-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (108 loc) · 4.26 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!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 ! Aviranjan</title>
<!-- link styles sheet -->
<link rel="stylesheet" href="style.css">
<!-- favicon icon -->
<link rel="shortcut icon" href="homeFavicon.svg" type="image/x-icon">
</head>
<body>
<!-- nav section start -->
<nav class="navigation conteinnar">
<div class="nav-brand">iamaviranjan</div>
<ul class="non-bullet nav-pills">
<li class="list-inline">
<a class="link link-active" href="index.html">Home</a>
</li>
<li class="list-inline">
<a href="neoGprojects.html">neog projects</a>
</li>
<li class="list-inline">
<a href="blogs.html">blogs</a>
</li>
<li class="list-inline">
<a href="pepcodingProject.html">pepcoding projects</a>
</li>
<li class="list-inline">
<a href="youtubeProjects.html">youtube projects</a>
</li>
</ul>
</nav>
<!-- nav section end -->
<!-- header section start -->
<header class="hero">
<img class="hero-img" src="aviranjanpic.svg" alt="images">
<h1 class="hero-heading">Aviranjan the <span style="color: rgb(24, 41, 185);">web developer</span> </h1>
</header>
<!-- header section end -->
<!-- part of all section start -->
<!-- Technologies -->
<section class="section ow">
<div class="conteinar-center">
<h3>Technologies</h3>
<p>I'm familiar with HTML5, CSS3, Git, JavaScript, NodeJS, ReactJS, and Web Hosting.</p>
</div>
</section>
<!-- neoGprojects -->
<section class="section">
<div class="conteinar-center">
<h3>NeoG Projects</h3>
<p>I like to showcase my work and thus, you can see my projects hosted online.</p>
<a class="link primary-link" href="neoGprojects.html">See projects</a>
</div>
</section>
<!-- pepcodingProject -->
<section class="section">
<div class="conteinar-center">
<h3>Pepcoding Projects</h3>
<p>I like to showcase my work and thus, you can see my projects hosted online.</p>
<a class="link primary-link" href="pepcodingProject.html">See projects</a>
</div>
</section>
<!-- youtube projects -->
<section class="section">
<div class="conteinar-center">
<h3>Youtube Projects</h3>
<p>here is my all youtube projects. You can see all my projects. You can also collect the project code </p>
<a class="link primary-link" href="youtubeProjects.html">See projects</a>
</div>
</section>
<!-- Blogs -->
<section class="section ow">
<div class="conteinar-center">
<h3>Blogs</h3>
<p>I am also working on some technical and non techincal blogs. I like to document my journey of learning.</p>
<a class="link secondery-link" href="blogs.html">Read-Blogs</a>
</div>
</section>
<!-- part of section end -->
<!-- start footer section -->
<footer class="footer">
<div class="footer-header">Connect With Me </div>
<ul class="social-links">
<li class="list-inline">
<a class="link" href="https://www.instagram.com/aviranjan07/">Instagram</a>
</li>
<li class="list-inline" >
<a class="link" href="https://www.linkedin.com/in/aviranjan-das-8121a2211">Linkedin</a>
</li>
<li class="list-inline">
<a class="link" href="https://twitter.com/aviranjan_das?s=08">Twitter</a>
</li>
<li class="list-inline">
<a class="link" href="https://github.com/aviranjan07">github</a>
</li>
<li class="list-inline">
<a class="link" href="https://www.youtube.com/channel/UCRG7g3RNvTL94kS8GnWIujA">youtube</a>
</li>
</ul>
</footer>
<!-- end footer section -->
<!-- link javaScript -->
<script src="app.js"></script>
</body>
</html>