-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (69 loc) · 3.14 KB
/
Copy pathindex.html
File metadata and controls
85 lines (69 loc) · 3.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ugud Site</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="all" href="styles.css">
</head>
<body class="sidebar-collapsed">
<div id="tswcontainer">
<div id="tswheader">
<!-- start of header section: insert your logo, etc, here -->
<div class="header-content">
<img src="media/logo.png" class="insignia" id="toggle-sidebar">
<audio loop autoplay controls>
<source src="media/Lynyrd Skynyrd - Free Bird (Official Audio).mp3">
</audio>
</div>
<!-- end of header section: insert your logo, etc, above this line -->
</div>
<div id="tswcontent">
<div id="tswcontproper">
<!-- start of content column: insert your content here -->
<h1 class="title">Hello</h1>
<h2>Changelog</h2>
<ul id="changelog">
<li>Added Flappybird</li>
<li>Added Tic-Tac-Toe</li>
<li>Added Pong Game</li>
<li>Transformed the home page</li>
<li>New sidebar</li>
<li>Made a proper footer</li>
</ul>
<h2>Project Priority</h2>
<ol id="project-priority">
<li>Project Melody full release</li>
<li>Battleship Hero remake in Godot</li>
<li>Parkour Civ rework and polish</li>
</ol>
<p> </p>
<!-- end of content column: put your content above this line -->
</div>
</div>
<div id="tswsidecol">
<div id="tswsideproper">
<!-- start of side column: insert your navigation menu, etc, here -->
<div id="tswcssbuttons">
<ul>
<li><a href="index.html" title="Home"><img src="media/home.png" alt="Home"></a></li>
<li><a href="aboutme.html" title="About Me"><img src="media/aboutme.png" alt="About Me"></a></li>
<li><a href="projects.html" title="Projects"><img src="media/projects.png" alt="Projects"></a></li>
<li><a href="songbank.html" title="Song Bank"><img src="media/songs.png" alt="Song Bank"></a></li>
</ul>
</div>
<!-- end of side column: put your navigation menu, etc, above this line -->
</div>
</div>
<div id="tswfooter">
<!-- start of footer section: insert your copyright notice, etc, here -->
<p>
Contact Me: yanoshkin@proton.me
</p>
<!-- end of footer section: insert your copyright notice, etc, above this line -->
</div>
</div>
<script src="virus.js" defer></script>
<script src="sidebar.js" defer></script>
</body>
</html>