-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.35 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Alec Williams</title>
<meta content="Alec Williams' Portfolio Site" property="og:title" />
<meta content="Please forgive me" property="og:description" />
<meta content="https://alec-b-williams.github.io/" property="og:url" />
<meta content="https://alec-b-williams.github.io/site/img/me.jpg" property="og:image" />
<script>
function playFun(){
var music = new Audio('site/sfx/fun.mp3');
music.play();
}
</script>
<link rel="stylesheet" href="site/style/index.css">
</head>
<body>
<div id="body_container">
<div id="title">
<h1>Oh, hello.</h1>
</div>
<div id="subtitle">
<h2>didn't see you there...</h2>
</div>
<div id="gamelinks">
<a href="rogue.html">Check out my game</a>
</div>
<div id="funbutton">
<font size='40px' color='red'>--></font><button onClick='playFun()'>...</button><font size='40px' color='red'><--</font>
</div>
<div id="swordsmen">
<h3>Hall of Steel</h3>
<div id="swordsmen_container">
<img src="site/img/sm1.jpg">
<img src="site/img/sm2.jpg">
<img src="site/img/sm3.jpg">
<img src="site/img/sm4.jpg">
<img src="site/img/sm5.webp">
</div>
</div>
</div>
</body>
</html>