-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (72 loc) · 3 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
82
83
<!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">
<title>home | bhushan mendhe</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">IAMDEVELOPER</div>
<ul class="nav-pills">
<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>
</nav>
<header class="head">
<img class="head-img" src="/images/code.svg" alt="">
<h1 class="head-heading">bhushan mendhe the <span class="head-inverted">web developer</span></h1>
</header>
<div class="container-center">
<section class="section ow">
<div class="container">
<h1>technologies</h1>
<p>I'm familiar with HTML5, CSS3, Bootstrap, Git, Javascript, NodeJS, ReactJS, and Web Hosting.</p>
</div>
</section>
<section class="section">
<div class="container container-center">
<h1>projects</h1>
<p>If you would like to see my work you can see my projects hosted online.</p>
<a class="link link-primary" href="/projects.html">BROWSE PROJECTS</a>
</div>
</section>
<section class="section ow">
<div class="container container-center">
<h1>blogs</h1>
<p>I am also working on some technical and non technical blogs. I like to document my journey of
learning.</p>
<a class="link link-secondary" href="/blogs.html">READ BLOGS</a>
</div>
</section>
</div>
<footer class="footer">
<div class="footer-head">connect with me socially</div>
<ul class="footer-social-links list-non-bullet">
<li class="list-item-inline">
<i class="fab fa-github"></i>
<a class="link" href="https://github.com/bmendhe23">github</a>
</li>
<li class="list-item-inline">
<i class="fab fa-linkedin"></i>
<a class="link" href="https://www.linkedin.com/in/bhushan-mendhe-1027a1146/">linkedin</a>
</li>
<li class="list-item-inline">
<i class="fab fa-instagram"></i>
<a class="link" href="https://www.instagram.com/bmendhe23/">instagram</a>
</li>
</ul>
</footer>
</body>
</html>