-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
61 lines (50 loc) · 1.89 KB
/
Copy pathtest.html
File metadata and controls
61 lines (50 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Animish Yadav</title>
<link rel="stylesheet" href="stylesheet.css" />
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
<meta name="description" content="Personal webpage of Animish Yadav." />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
</head>
<body>
<!-- NAV BAR COMES HERE -->
<nav>
<!-- Checkbox for toggling menu -->
<input type="checkbox" id="check" />
<!-- Menu icon -->
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<!-- Site logo -->
<label class="logo">@AnimishY</label>
<!-- Navigation links -->
<ul class="ohhello">
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="programming.html">Programming</a></li>
<li><a class="active" href="design.html">Design</a></li>
<li><a href="socials.html">Socials</a></li>
</ul>
</nav>
<script>
function toggleMenu() {
const navLinks = document.querySelector(".nav-links");
navLinks.classList.toggle("active");
}
</script>
<!-- <section class="rotatingText">
<div class="rotatingText-content">
<p class="rotatingText-description">
I'll make your website…
</p>
<h2 class="rotatingText-adjective">beautiful</h2>
<h2 class="rotatingText-adjective">maintainable</h2>
<h2 class="rotatingText-adjective">perfect 👌</h2>
</div>
</section> -->
</body>
</html>