-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (54 loc) · 3.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Dev Mittal</title>
<link href="styles.css" rel="stylesheet">
<link rel="icon" href="/images/favicon.ico">
</head>
<body>
<nav class="navigation container">
<div class="nav-brand"><a href="/">iAmDeveloper</a></div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline link-active"><a class="link" 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="hero">
<img class="hero-img" src="images/hero.svg" />
<h1 class="hero-heading">Dev Mittal - <span class="heading-inverted">Developer</span></h1>
</header>
<section class="section ow">
<div class="container container-center">
<h1>Technologies</h3>
<p>We are an open community of developers building resources for a better Web, regardless of brand, browser, or platform. Anyone can contribute and each person who does makes us stronger. Together we can continue to drive innovation on the Web to serve the greater good. It starts here, with you.</p>
</div>
</section>
<section class="section">
<div class="container container-center">
<h1>Projects</h3>
<p>We are an open community of developers building resources for a better Web, regardless of brand, browser, or platform. Anyone can contribute and each person who does makes us stronger. Together we can continue to drive innovation on the Web to serve the greater good. It starts here, with you.</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</h3>
<p>We are an open community of developers building resources for a better Web, regardless of brand, browser, or platform. Anyone can contribute and each person who does makes us stronger. Together we can continue to drive innovation on the Web to serve the greater good. It starts here, with you.</p>
<a class="link link-primary" href="/blogs.html">Read Blogs</a>
</div>
</section>
<footer class="footer">
<div class="footer-header">Social Media Presence</div>
<ul class="footer-social-links list-non-bullet">
<li class="list-item-inline"><a class="link" href="https://github.com/DevMittal04">GitHub</a></li>
<li class="list-item-inline"><a class="link" href="https://twitter.com/DevMittal04">Twitter</a></li>
<li class="list-item-inline"><a class="link" href="https://linkedin.com/in/DevMittal04">LinkedIn</a></li>
<li class="list-item-inline"><a class="link" href="https://dev.to/devmittal04">Dev.to</a></li>
</ul>
<p class="copyright">Dev Mittal © 2021</p>
</footer>
</body>
</html>