-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
44 lines (34 loc) · 1.4 KB
/
about.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
<!DOCTYPE html>
<head>
<link href="./about.css" type="text/css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Tab theme color for Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#2a2a2a">
<!-- status bar color for ios safari-->
<meta name="apple-mobile-web-app-status-bar-style" content="#2a2a2a">
</head>
<body>
<!--container of everything-->
<div id="center-container">
<p class="text">Hello!</p>
<!--container of the top picture-->
<div id="top-container">
<img src="./assets/icon.png">
</div>
<!--container of the middle text box-->
<div id="middle-container">
<p class="text" id="text-in-box">* </p>
</div>
<p style="color:transparent"> </p>
<!--container of the buttons-->
<div id="bottom-container">
<button class="button" onclick="location.href='https://github.com/t41372?tab=repositories'">PROJECTS</button>
<button class="button">ACT</button>
<button class="button">OPTIONS</button>
<button class="button" onclick="location.href = './index.html'">GO BACK</button>
</div>
</div>
<!--TypeIt. Source: https://typeitjs.com/-->
<script src="https://unpkg.com/typeit@8.0.7/dist/index.umd.js"></script>
<script src="about.js"></script>
</body>