-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (84 loc) · 3.75 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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<!-- Regular data -->
<meta charset="utf-8">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<!-- Description -->
<meta name="author" content="Hrithik Dhakrey" />
<meta name="description" content="I create frontend & backend python application" />
<meta name="keywords" content="hrithik,dhakreu,hrithik dhakrey,iamdhakey,python,full stack,freelance" />
<meta name="Resource-type" content="Document" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Open Graph data -->
<meta property="og:site_name" content="Hrithik Dhakrey" />
<meta property="og:title" content="Hrithik Dhakrey" />
<meta property="og:description" content="I create frontend & backend python application" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://iamdhakrey.dev" />
<!-- Title -->
<title>Hrithik Dhakrey</title>
<!-- Icons -->
<!-- <link href="https://iamdhakrey.dev/img/thumbnail.png" type="image/png" rel="image_src"> -->
<link href="https://iamdhakrey.dev" rel="canonical">
<!-- CSS -->
<link href="css/style.css" rel="stylesheet" type="text/css">
<!-- Toggle button mobile -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$(".mobile-tap-area").click(function () {
$(".toggle-mobile-first").toggle();
$(".toggle-mobile-second").toggle();
});
});
</script>
</head>
<body class="website-background-black">
<div class="hide-mobile mobile-tap-area">
<div class="max-width">
<div class="vertical-center">
<h1>
<div class="text-color-white hide-text-block">
<div class="animate toggle-mobile-first">Hello.</div>
</div>
<div class="text-color-red hide-text-block">
<div class="animate delay04 toggle-mobile-first">I am</div>
</div>
<div class="text-color-red hide-text-block">
<div class="animate delay08 toggle-mobile-first">Hrithik</div>
</div>
</h1>
</div>
</div>
<div class="tap-indication">Tap anywhere</div>
</div>
<div class="max-width">
<div class="vertical-center">
<h1>
<div class="hide-text-block">
<a href="about.html">
<div class="animate text-color-white on-hover-40 hide-web label-hello "></div>
<div class="animate text-color-white on-hover-40 hide-mobile toggle-mobile-second">About</div>
</a>
</div>
<div class="hide-text-block">
<a href="work.html">
<div class="animate text-color-red on-hover-40 delay04 hide-web label-iam"></div>
<div class="animate text-color-red on-hover-40 delay04 hide-mobile toggle-mobile-second">Work
</div>
</a>
</div>
<div class="hide-text-block">
<a href="contact.html">
<div class="animate text-color-red on-hover-40 delay08 hide-web label-hrithik"></div>
<div class="animate text-color-red on-hover-40 delay08 hide-mobile toggle-mobile-second">Contact
</div>
</a>
</div>
</h1>
</div>
</div>
<div class="bg-photo"></div>
</body>
</html>