-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits.html
46 lines (46 loc) · 2.8 KB
/
credits.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
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://realnath.github.io/" />
<meta property="og:site_name" content="Real Nath" />
<meta property="og:image" content="https://i.imgur.com/5toIrU0.png" />
<meta property="og:description" content="The one and only personal website of Real Nath, a student of a top university in the country. Currently learning Python, C++, Java, a bit of Haskell, and JavaScript later." />
<meta name="description" content="The one and only personal website of Real Nath, a student of a top university in the country. Currently learning Python, C++, Java, a bit of Haskell, and JavaScript later.">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="icon.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<nav>
<li class="logo"><a href=""><img src="icon.png" width="50"></a></li>
<ul class="hamMenu">
<div class="rect"></div>
<div class="whiteLine"></div>
<input type="checkbox" id="check">
<span class="menu">
<li><a href="/">HOME</a></li>
<li><a href="about" onclick="return false;">ABOUT ME</a></li>
<li><a href="" onclick="return false;">CREDITS</a></li>
<label for="check" class="closeHam"><i class="fa-solid fa-times"></i></label>
</span>
<label for="check" class="openHam"><i class="fa-solid fa-bars"></i></label>
</ul>
</nav>
</header>
<div class="content" style="padding-top: 5px;">
<main>
<h1>Credits</h1>
<ul>
<li><a href="https://www.youtube.com/watch?v=QQlxvj_GKss">Deltaty Code</a> for the hamburger menu code (with some modification by me).</li>
<li><a href="https://www.youtube.com/@TechNewVideo">TechNewVideo</a> for the website icon (also my profile picture)</li>
<li><a href="https://stackoverflow.com/">Stack Overflow</a> for helping with codes.</li>
</ul>
</main>
</div>
</body>
</html>