-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
141 lines (120 loc) · 4.56 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!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" />
<meta name="keywords" content="web development, graphic design, blog" />
<meta name="description" content="web site" />
<meta name="robots" content="INDEX, FOLLOW" />
<title>Manav Goyal | Home</title>
<link rel="stylesheet" href="./css/index.css" />
</head>
<body>
<header class="header">
<div class="headerLogo">
<a href="/index.html">
<img src="./img/logo.png" alt="Logo" height="100px" class="headerLogoImg">
</a>
</div>
<div class="headerBtn">
<input type="text" name="headerSearch" id="headerSearch" placeholder="Search">
<button class="headerBtnSearch" onclick="searchFun()">
<i class="fa fa-search"></i>
</button>
</div>
</header>
<section class="info">
<h1 class="infoHeading search search">Hi, I am <strong>Manav Goyal</strong></h1>
<p class="infoPara search">I am a Font-end web developer, Curruntly sharpening my skills using basic HTML, CSS and
JavaScript. <br> This is my Portfolio website, showcasing some of my early basic projects.
</p>
<p class="infoQuote search">
"If nobody thinks that you are good enough,<br> then stop listening to those who are nobody."
</p>
</section>
<section class="coding">
<h1 class="codingHeading">Coding</h1>
<div class="codingItem">
<div class="codingItems">
<iframe src="https://manavgoyal111.github.io/manavgoyal111/" frameborder="0" height="500px"></iframe>
<a href="https://manavgoyal111.github.io/manavgoyal111/" target="_blank">
<button class="codingItemBtn">
Open
</button>
</a>
</div>
<div class="codingItems">
<iframe src="https://manavgoyal111.github.io/manavgoyal111/" frameborder="0" height="500px"></iframe>
<a href="https://manavgoyal111.github.io/manavgoyal111/" target="_blank">
<button class="codingItemBtn">
Open
</button>
</a>
</div>
<div class="codingItems">
<iframe src="https://manavgoyal111.github.io/manavgoyal111/" frameborder="0" height="500px"></iframe>
<a href="https://manavgoyal111.github.io/manavgoyal111/" target="_blank">
<button class="codingItemBtn">
Open
</button>
</a>
</div>
</div>
</section>
<section class="webdev">
<h1 class="codingHeading">Web Development</h1>
<div class="codingItem">
<div class="codingItems">
<iframe src="https://manavgoyal111.github.io/manavgoyal111/" frameborder="0" height="500px"></iframe>
<a href="https://manavgoyal111.github.io/manavgoyal111/" target="_blank">
<button class="codingItemBtn">
Open
</button>
</a>
</div>
<div class="codingItems">
<iframe src="https://manavgoyal111.github.io/manavgoyal111/" frameborder="0" height="500px"></iframe>
<a href="https://manavgoyal111.github.io/manavgoyal111/" target="_blank">
<button class="codingItemBtn">
Open
</button>
</a>
</div>
<div class="codingItems">
<iframe src="https://manavgoyal111.github.io/manavgoyal111/" frameborder="0" height="500px"></iframe>
<a href="https://manavgoyal111.github.io/manavgoyal111/" target="_blank">
<button class="codingItemBtn">
Open
</button>
</a>
</div>
</div>
</section>
<footer class="footer">
<div class="footerCopyright">
<div>© Copyright 2021</div>
<div>manavgoyal <i class="fa fa-user"></i></div>
</div>
<div class="footerSocial">
<li class="footerSocialItem">
<a href="https://www.linkedin.com/in/manav-goyal" target="_blank">
<i class="fa fa-linkedin-square"></i>
</a>
</li>
<li class="footerSocialItem">
<a href="https://github.com/manavgoyal111" target="_blank">
<i class="fa fa-github"></i>
</a>
</li>
<li class="footerSocialItem">
<a href="https://codepen.io/manavgoyal111" target="_blank">
<i class="fa fa-codepen"></i>
</a>
</li>
</div>
</footer>
<script src="./JS/index.js"></script>
<script src="https://kit.fontawesome.com/978c1d0d13.js" crossorigin="anonymous"></script>
</body>
</html>