-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (78 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vinay | Web developer</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav class="navigation h-nav-resp container">
<div class="nav-brand">VINAY MAURYA</div>
<ul class="list-non-bullet nav-pills v-class-resp">
<li class="list-item-inline">
<a class="link link-active" href="/">Home</a>
</li>
<li class="list-item-inline">
<a class="link" href="/projects.html">Projects</a>
</li>
<li class="list-item-inline">
<a class="link" href="/blogs.html">Blogs</a>
</li>
</ul>
<div class="burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
<header class="hero">
<img class="hero-img" src="images/hero.svg" alt="hero" />
<h1 class="hero-heading">
front-end <span class="heading-inverted">web developer</span>
</h1>
</header>
<section class="section ow">
<div class="container container-center">
<h1>Technologies</h1>
<p>HTML5,CSS3 ,Javascript, Angular ,Typescript ,Git ,Jira ,Analytics, SEO</p>
</div>
</section>
<section class="section ow">
<div class="container container-center">
<h1>Projects</h1>
<p>
I like to showcase my projects,you can see my project hosted online.
</p>
<a class="link link-primary" href="/projects.html">see projects</a>
</div>
</section>
<section class="section ow">
<div class="container container-center">
<h1>Blogs</h1>
<p>
I like to trekking,camping so blogs will be based on that experience.
</p>
<a class="link link-secondary" href="blogs.html">Read blogs</a>
</div>
</section>
<footer class="footer">
<div class="footer-header">social media presence</div>
<ul class="list-non-bullet social-links">
<li class="list-item-inline">
<a class="link" href="https://github.com/mvinay71">github</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://www.linkedin.com/in/techinlife"
>linkedin</a
>
</li>
<li class="list-item-inline">
<a class="link" href="https://www.instagram.com/riddle1x24"
>instagram</a
>
</li>
</ul>
</footer>
</body>
</html>