-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-old.html
More file actions
91 lines (91 loc) · 3.19 KB
/
index-old.html
File metadata and controls
91 lines (91 loc) · 3.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title>Demetrius Nekos' Site</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul class="navbar">
<li><a href="#home">Home</a></li>
<div class="dropdown">
<button class="dropbtn"><a href="#projects">Stuff I've Made</a>
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="hookfoot.html">Captain Hookfoot</a>
<a href="visvi.html">Visvi</a>
<a href="wormgame.html">Funny Worm Game</a>
<a href="bearswithguns.html">Bears with Guns</a>
<a href="eden.html">EDEN</a>
<a href="thrillertheater.html">Thriller Theater</a>
<a href="shadow.html">Shadow Mesh Generator</a>
<a href="graphics.html">Graphics Programming</a>
</div>
</div>
<li><a href="#contact">Contact</a></li>
<li><a href="Demetrius Nekos Resume.pdf">Resume</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Demetrius Nekos makes Games.</h1>
</section>
<section id="projects">
<div class="section-inner">
<h2>Stuff I've made</h2>
<p>I go to school for Game Programming, and have done stuff. I also made this site by teaching myself html and css, which is why it looks a bit bad.</p>
<div class="container">
<div class="grid">
<div class="cell">
<a href="hookfoot.html"><img src="img/hookfoot_port.png">
<p>Captain Hookfoot</p></a>
</div>
<div class="cell">
<a href="eden.html"><img src="img/eden_port.png">
<p>EDEN</p></a>
</div>
<div class="cell">
<a href="bearswithguns.html"><img src="img/bwg_port.png">
<p>Bears with Guns</p></a>
</div>
<div class="cell">
<a href="visvi.html"><img src="img/visvi_port.png">
<p>Visvi</p></a>
</div>
<div class="cell">
<a href="wormgame.html"><img src="img/worm_port.png">
<p>Funny Worm Game</p></a>
</div>
<div class="cell">
<a href="thrillertheater.html"><img src="img/thriller_port.png">
<p>Thriller Theater</p></a>
</div><div class="cell">
<a href="shadow.html"><img src="img/shadow_port.PNG">
<p>Shadow Mesh Generator</p></a>
</div>
<div class="cell">
<a href="graphics.html"><img src="img/graphics_midterm.gif">
<p>Graphics Programming</p></a>
</div>
</div>
</div>
</div>
</section>
<section id="contact">
<div class="section-inner">
<h2>Contact me</h2>
<p>You can find me at:</p>
<ul class="social-links">
<li><a href="https://github.com/Dnekos">Github</a></li>
<li><a href="https://dnekos.itch.io/">Itch.io</a></li>
<li><a href="https://www.linkedin.com/in/demetrius-nekos/">LinkedIn</a></li>
</ul>
<p>Or, you can <a href="mailto:demetrius.nekos@mymail.champlain.edu">send me an email</a>.</p>
</div>
</section>
</main>
</body>
</html>