-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 1.61 KB
/
Copy pathindex.html
File metadata and controls
53 lines (47 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Welcome!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Sidebar Navigation -->
<nav class="sidebar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="About me.html">About me</a></li>
<li><a href="Contact.html">Contact</a></li>
<li><a href="https://github.com/NotAViper" target="_blank">GitHub</a></li>
</ul>
</nav>
<header>
<div class="container">
<h1>Welcome to my personal page!</h1>
<div class="picture-frame">
<img src="Profile.png" alt="Profile Picture">
</div>
<p>Hello! I am NotAViper</p>
</div>
</header>
<section id="about" class="about-me">
<div class="container">
<h2>About me</h2>
<p>I like computers, tech and making maps for games specifically Counter-Strike:Global Offensive</p>
<p>If you want to see more about me and check this page out, go ahead and check out the links on the sidebar!</p>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2><a href="Contact.html">Contact Me</a></h2>
</div>
</section>
<footer>
<div class="container">
<p>© 2025 NotAViper. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>