-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoding.html
More file actions
78 lines (64 loc) · 2.41 KB
/
coding.html
File metadata and controls
78 lines (64 loc) · 2.41 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
<!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">Coding</h1>
<hr>
</header>
<section>
<h2><center>My Story</center></h2>
<p>
As you might have read in the about page, my coding started with python. Go to about page and find the how coding began
section to read the full story. But it basically started when I was 8 or 9, but then I got bored and stopped. Then I
started again and started liking it. Aftera few years, here I am.
</p>
<hr>
<h2><center>My Programs</center></h2>
<p>
TEXT GOES HERE
</p>
</section>
<hr>
<footer>
<center><h2>© Nikhil Pellakuru</h2></center>
</footer>
<script src="script.js"></script>
</body>
</html>