-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
58 lines (49 loc) · 2.88 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
<!DOCTYPE html>
<html id="bg">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css-mobile/index.css">
<head>
<meta charset="UTF-8">
<meta name="description" content="description test?">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="">
<title>hakimi's experimental page</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
<!-- <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap" rel="stylesheet"> -->
</head>
<body>
<div class="main-texts">
<h2 id="count">count: 0</h2>
</div>
<div class="buttons-div">
<button class="math-buttons" id="plus" onclick="increment()">increment</button>
<button class="math-buttons" id="reset" onclick="nuke()">reset</button>
<button class="math-buttons" id="minus" onclick="whatever()">decrement</button>
</div>
<div class="about">
<p class="about-texts" id="love">made with ❤️ by <a href="html/redirect_github.html">hakimi</a></p>
<p class="about-texts" id="welcome">welcome to my page where i experiment with html and css.<br>enjoy the counter!</p>
<!-- <img src="https://pbs.twimg.com/profile_images/1354479643882004483/Btnfm47p_400x400.jpg" class="twitter-img" alt=""> -->
</div>
<div class="themes">
<!-- <button class="source"><a href="https://github.com/Hakimi0804/html-js-css-stuff">source code</a></button> -->
<button class="theme-button" id="reload" onclick="reload()">having troubles? reload the page</button>
<button class="theme-button" id="dark" onclick="changetheme('dark')">dark theme</button>
<button class="theme-button" id="light" onclick="changetheme('light')">light theme</button>
<!-- tmp -->
<!-- <button class="exp-secpg" onclick="beam('html/second.html')"><a class="exp-secpg-txt" href="html/second.html">access experimental second page</a></button> -->
<!-- endtmp -->
</div>
<div class="misc-bottom-buttons">
<button class="nextpage-two" id="nextpage"><a href="html/coming_soon.html">next page ></a></button>
</div>
</body>
<script src="scripts/theme.js"></script>
<script src="scripts/index.js"></script>
<script src="scripts/redirect.js"></script>
</html>