-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (86 loc) · 3.77 KB
/
index.html
File metadata and controls
101 lines (86 loc) · 3.77 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home</title>
<link rel="apple-touch-icon" sizes="180x180" href="assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16x16.png">
<link rel="manifest" href="assets/site.webmanifest">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://getbootstrap.com/docs/5.3/assets/css/docs.css" rel="stylesheet">
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles/anim.css">
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand font hover" href="index.html">harichand manoj</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item icons d-lg-flex">
<a class="nav-link" href="https://www.linkedin.com/in/harichand-manoj/" target="_blank"
title="Visit LinkedIn Profile">
<i data-feather="linkedin"></i>
<script>
feather.replace();
</script>
</a>
</li>
<li class="nav-item icons d-lg-flex">
<a class="nav-link" href="https://www.github.com/hari166" target="_blank" title="Visit GitHub">
<i data-feather="github"></i>
<script>
feather.replace();
</script>
</a>
</li>
<li class="nav-item icons d-lg-flex">
<a class="nav-link" href="mailto:harichandmanoj@gmail.com" title="Send an email">
<i data-feather="mail"></i>
<script>
feather.replace();
</script>
</a>
</li>
</ul>
</div>
</div>
</nav>
<div style="width:70%; margin:auto;">
<hr size="20" style="background-color: rgb(0, 0, 0); height: 2px; border: none;">
</div>
<div class="center">
<div class="caret">
<h1 class="typing">hello there !</h1>
</div>
</div>
<h3 style="margin-left: 20px;">About Me</h3>
<br>
<div>
<p class="para"><i>
Welcome to my page! I am a software developer working primarily in Golang and C++.<br>
You can view some of my projects on my GitHub profile. I am currently pursuing my B.Tech in
Computer Science and Engineering.
<br><br>
Aside from the technical stuff, I am an avid fan of football and love to play the sport.
I am an ardent reader and love watching movies.<br> Occasionally, I am the casual gamer.
</i></p>
</div>
<br>
<div class="text-center">
<a href="project.html">
<button type="button" class="btn btn-outline-* btn">View my work</button>
</a>
</div>
<br><br>
<div class="footer">
<i>Have a happy <script src="date.js"></script> !</i>
</div>
</body>
</html>