-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (40 loc) · 1.48 KB
/
index.html
File metadata and controls
41 lines (40 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to the Abyss</title>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=UnifrakturCook:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<!-- Lightning Effect -->
<div class="lightning-container"></div>
<!-- Home Section -->
<header class="header" id="home">
<div class="hover-container">
<h1 class="title" id="name">SAKSHAM GOYAL</h1>
<p class="warning-message">Don't click repeatedly!</p>
</div>
<p class="tagline">"Welcome! To my website."</p>
</header>
<nav class="navbar">
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="birthplace.html">My Birthplace</a></li>
<li><a href="background.html">My Background</a></li>
<li><a href="technical-skills.html">Technical Skills</a></li>
<li><a href="text-analyzer.html">Text Analyzer</a></li>
<li><a href="#" id="cv-link">CV</a></li>
</ul>
</nav>
<main class="content">
<p>Step into the shadows and explore the fragments of a soul lost in time...</p>
</main>
</div>
<script src="script.js"></script>
</body>
</html>