-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (59 loc) · 2.24 KB
/
index.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home | Neha</title>
<link rel="stylesheet" href="/styles.css" />
</head>
<body>
<nav>
<div class="brandname">NR</div>
<div class="container-nav">
<a class="nav-icon-tag" href="/">
<img class="nav-icon" src="images/icons/home-filled.svg"/>
</a>
<a class="nav-icon-tag" href="/projects.html">
<img class="nav-icon" src="images/icons/projects-unfilled.svg"/>
</a>
<a class="nav-icon-tag" href="/blogs.html">
<img class="nav-icon" src="images/icons/blog-unfilled.svg"/>
</a>
</div>
</nav>
<section>
<div class="container-horizontal margin-1 padding-1">
<img class="img-about-me" src="/images/neha.jpg" />
<div class="section-text">
<p class="font-bold font-large">Hello!</p>
<p>
I'm <span class="font-bold">Neha Rajesh</span> from
Bangalore. An aspiring full stack developer and learner!
</p>
<p>I spend most of my time coding or learning new languages.</p>
<p>You can check out my projects and a few blogs I've written below.</p>
<p>Come back soon to see my progress!</p>
<!-- Add a contact form soon! -->
<!-- <div>Hire Me!</div> -->
</div>
</div>
</section>
<div class="container-horizontal container-links">
<div class="container-link"><a href="/projects.html">My Projects</a></div>
<div class="container-link"><a href="/blogs.html">My Blogs</a></div>
</div>
<footer>
<div>
<a class="nav-icon-tag" href="https://github.com/neharajesh">
<img class="nav-icon" src="images/icons/github.svg"/>
</a>
<a class="nav-icon-tag" href="https://www.linkedin.com/in/neha-rajesh-a95343122/">
<img class="nav-icon" src="images/icons/linkedin.svg"/>
</a>
<a class="nav-icon-tag" href="https://www.twitter.com/nehkochann/">
<img class="nav-icon" src="images/icons/twitter.svg"/>
</a>
</div>
</footer>
</body>
</html>