-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (99 loc) · 4.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
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
<!DOCTYPE html>
<html lang="tr">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZQPQLM5NS2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-ZQPQLM5NS2");
</script>
<title>Home</title>
<link rel="icon" href="../static/images/gkr_logo.ico"
type = "image/ico">
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="index.css" />
<link rel="stylesheet" type="text/js" href="index.js" />
<script src ="index.js"></script>
</head>
<body onload="checkCookie();getLocation()">
<div class="logo">
<a href="/">
<img src="../static/images/gkr logo.gif" class="log" height="40px" width=" 40px" alt="logo" />
</a>
</div>
<div class="buttons">
<div class="main">
<ul class="listnav">
<li class="active"><a href="/">Home</a></li>
<li><a href="../template/gallery.html">Gallery</a></li>
<li><a href="../template/contact.html">Contact</a></li>
<li><a href="../template/project.html">Projects</a></li>
<li><a href="../template/login.html">Login</a></li>
</ul>
</div>
</div>
<div class="intro">
<h1>About</h1>
<div class="intro-itm">
<div class="frame">
<img src="../static/images/mine.jpg" height="101px" width="100px" alt="" />
</div>
<div class="tex">
<span>
<p1>
Hello !!! I am Gaurav.<br />
I'm a beginner front end developer.<br />
I have a better experience in python, html, css.
</p1>
</span>
</div>
</div>
</div>
<footer>
<div>
<p>Hello visit next time</p>
<p>All rights preserved © 2023</p>
<div>
<div class="social">
<ul>
<li>
<a href="https://www.youtube.com" title="youtube" target="_blank"><img class="social-itm"
src="../static/images/y.png" width="22rem" height="21rem" /></a>
</li>
<li>
<a href="https://www.instagram.com" title="instagram" target="_blank"><img
class="social-itm" src="../static/images/i.png" width="20rem" height="20rem" /></a>
</li>
<li>
<a href="https://www.facebook.com" title="facebook" target="_blank"><img class="social-itm"
src="../static/images/f.png" width="20rem" height="20rem" /></a>
</li>
<li>
<a href="https://www.twitter.com" title="twitter" target="_blank"><img class="social-itm"
src="../static/images/t.png" width="20rem" height="20rem" /></a>
</li>
<li>
<a href="https://in.linkedin.com" title="linkdin" target="_blank"><img class="social-itm"
src="../static/images/l.png" width="20rem" height="20rem" /></a>
</li>
<li>
<a href="https://www.github.com" title="github" target="_blank"><img
src="../static/images/g.png" class="social-itm" width="20rem" height="20rem" /></a>
</li>
<li>
<a href="https://www.discord.com" title="discord" target="_blank"><img class="social-itm"
src="../static/images/d.png" width="20rem" height="20rem" /></a>
</li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>