-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (74 loc) · 2.57 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="../css/style.css" rel="stylesheet" />
<title>Home | Priyanka Prajapati</title>
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">IAMDEVELOPER</div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a href="/" class="links link-active nav-links-space">Home</a>
</li>
<li class="list-item-inline">
<a href="/projects.html" class="links nav-links-space">Projects</a>
</li>
<li class="list-item-inline">
<a href="/blogs.html" class="links nav-links-space">Blogs</a>
</li>
</ul>
</nav>
<header class="hero space-md">
<img src="../images/hero.svg" class="hero-img" />
<h3 class="hero-heading">
Priyanka Prajapati the
<span class="heading-inline">Web Developer.</span>
</h3>
</header>
<section class="section ow">
<div class="container-center">
<h1>Technologies</h1>
<p>
I'm familiar with HTML5, CSS3, github, Javascript, Postman, NodeJs, ReactJS, and
Web Hosting.
</p>
</div>
</section>
<section class="section">
<div class="container-center">
<h1>Projects</h1>
<p>
I like to showcase my work and thus, you can see my projects hosted
online
</p>
<a href="projects.html" class="links link-primary">See Projects</a>
</div>
</section>
<section class="section ow">
<div class="container-center">
<h1>Blogs</h1>
<p>
I am also working on some technical ansd non-technical blogs. I like
to document my journey of learning.
</p>
<a href="blogs.html" class="links link-secondary">Read Blogs</a>
</div>
</section>
<footer class="footer">
<div class="footer-heading">
Social Media Presence.
</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline"><a href="https://github.com/prajapati-priyanka" class="links" target="_blank">Github</a></li>
<li class="list-item-inline"><a href="https://www.linkedin.com/in/priyanka-prajapati-853098146/" class="links" target="_blank">Linkedin</a></li>
<!-- <li class="list-item-inline">
<a href="/" class="links">Instagram</a>
</li> -->
</ul>
</footer>
</body>
</html>