-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (71 loc) · 2.98 KB
/
index.html
File metadata and controls
86 lines (71 loc) · 2.98 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
86
<!DOCTYPE html>
<html>
<head>
<link href="CSS/style.css" rel="stylesheet" type="text/css">
<link href="CSS/index.css" rel="stylesheet" type="text/css">
<link href="CSS/side_nav.css" rel="stylesheet" type="text/css">
<meta charset="utf-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Itim&display=swap"
rel="stylesheet">
<title>🏠 Nikrp - Home Page</title>
</head>
<body>
<header>
<!-- Side Navigation -->
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn"
onclick="closeNav()">×</a>
<a href="index.html" class="page">
Home *
</a>
<a href="about_me.html" class="page">
About Me
</a>
<a href="coding.html" class="page">
Coding World
</a>
<a href="contact.html" class="page">
Contact Me
</a>
<a href="https://nikrp.blogspot.com"
target="_blank" class="page">
My Blog
</a>
</div>
<p>
<span style="font-size:30px;cursor:pointer"
onclick="openNav()" class="side-bar">☰ Pages</span>
</p>
<!-- Side Navigation End -->
<h1 class="title">Home</h1>
<hr>
</header>
<section>
<p>
Hey everyone, my name is Nikhil and I made this website with HTML, CSS, and JS! I am working on adding my python projects
to this website so you all can see it. Here are some links to my social sites. Please follow me and subscribe to my
channel. It's mostly for soccer videos. I posted a few of my fortnite videos, but that was for testing livestreams.
</p>
<ol>
<li><a href="https://www.instagram.com/nikhil_ca/" target="_blank">Instagram</a> 📷</li>
<li><a href="https://www.youtube.com/channel/UCtfhF4fqy4gDOnocsp3dWRg" target="_blank">Youtube</a>▶️</li>
<li><a href="https://github.com/nikrp" target="_blank">GitHub</a> 🐈</li>
</ol>
<br>
<br>
<br>
<center>
<span><img src="Images/cr_prince.jpg" alt="Prince Clash Royale"></span>
<span><img src="Images/cr_pekka.jpg" alt="P.E.K.K.A Clash Royale"></span>
<span><img src="Images/cr_mk.jpg" alt="Mega Knight Clash Royale"></span>
</center>
</section>
<hr>
<footer>
<center><h2>© Nikhil Pellakuru</h2></center>
</footer>
<script src="script.js"></script>
</body>
</html>