44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="css/main.css">
|
|
<title>// Hex Studios //</title>
|
|
|
|
<script>
|
|
r = document.querySelector(':root');
|
|
|
|
function setForegroundColor(color) {
|
|
r.style.setProperty('--color-foreground', color)
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div style="width: 50vh; margin-left: 30px; margin-top: 50px;">
|
|
|
|
<div class="tui-frame">
|
|
<h2 class="tui-frame-header">IMAGE</h2>
|
|
<img src="res/chris2.jpg" style="width:50%;" />
|
|
</div>
|
|
|
|
<div class="tui-frame">
|
|
<h2 class="tui-frame-header">// HEX STUDIOS //</h2>
|
|
<div class="tui-frame-content">
|
|
<p>Hello! My name is Chris, aka Spudnut2000. Welcome to my personal portfolio site!</p>
|
|
<h2>About Me</h2>
|
|
<p>I am a husband, programmer, musician, and all around nerd. I like to develop both software and games.</p>
|
|
<p>I am primarily a Software Engineer by trade with a Bachelor's in Sotware Engineering and ~5 years of professional experience, where the majority of my knowledge is in C#/.NET, XAML, and HTML/CSS. I am also proficient in many other languages like Odin, C/C++, Java, QML, and JavaScript.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<button onClick="setForegroundColor('#102090')">Change color</button>
|
|
|
|
</body>
|