-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (123 loc) · 4.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>TapTapTap - tapping game built with Javascript</title>
<meta
name="description"
content="Open source tapping game built with Javascript"
/>
<link rel="stylesheet" href="style/main.css" />
<link
href="https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700"
rel="stylesheet"
/>
<!-- favicon -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
href="/favicons/favicon-32x32.png"
sizes="32x32"
/>
<link
rel="icon"
type="image/png"
href="/favicons/favicon-16x16.png"
sizes="16x16"
/>
<link rel="manifest" href="/favicons/manifest.json" />
<link
rel="mask-icon"
href="/favicons/safari-pinned-tab.svg"
color="#0b1d31"
/>
<link rel="shortcut icon" href="/favicons/favicon.ico" />
<meta name="msapplication-config" content="/favicons/browserconfig.xml" />
<meta name="theme-color" content="#0b1d31" />
<!-- OG Details -->
<meta property="og:title" content="TapTapTap" />
<meta
property="og:description"
content="Open source tapping game built with Javascript"
/>
<meta
property="og:site_name"
content="TapTapTap - Open source tapping game built with Javascript"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://taptaptap.click/" />
<meta
property="og:image"
content="https://taptaptap.click/images/im-og_image.png"
/>
</head>
<body>
<div class="section-container section-home">
<div class="section-wrapper home-section-wrapper">
<div class="logo-container">
<div class="logo"></div>
<div class="pulsing-circle"></div>
</div>
<h2 class="home-subtitle">
TapTapTap - tapping game built with Javascript
</h2>
<div class="btns-container">
<a class="btn btn-pink" href="play/">Play</a>
<a class="btn btn-outline" href="https://github.com/tpicpc/taptaptap"
>View on GitHub</a
>
</div>
<div class="screenshots-container">
<div class="desktop-screenshot">
<div class="mobile-screenshot"></div>
</div>
</div>
<a href="#about" class="arrow-down-container"></a>
</div>
</div>
<!-- <nav class="menu-container">
<ul class="menu">
<li class="menu-item"><a class="menu_item_link" href="">Home</a></li>
<li class="menu-item menu-item--selected"><a class="menu_item_link" href="">About</a></li>
<li class="menu-item"><a class="menu_item_link" href="">Timeline</a></li>
<li class="menu-item"><a class="menu_item_link" href="">Credits</a></li>
</ul>
</nav> -->
<div id="about" class="section-container section-about">
<div class="section-wrapper">
<h2 class="section-title">About</h2>
<div class="about-container">
<p class="about-text">
I am a web developer. I have skills in a variety of technologies,
programming languages and frameworks. Especially has a lot of skills
and knowledge on HTML 5, CSS, Bootstrap, Tailwind CSS, JavaScript,
React, MongoDB. I am very good at JavaScript based software
development such as: - MERN Stack (MongoDB, Express.js, React,
Node.js)
</p>
<div class="short-bio-container">
<div class="bio-avatar">
<img
src="https://sahinur.netlify.app/web/sahinur-dev.png"
alt=""
/>
</div>
<div class="bio">
<h3 class="bio-title">Sahinur Islam</h3>
<p class="bio-links">
Check my <a href="https://sahinur.xyz/">website</a>, and follow
me on <a href="https://twitter.com/devsahinur">Twitter</a>.
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>