-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (59 loc) · 2.33 KB
/
index.html
File metadata and controls
76 lines (59 loc) · 2.33 KB
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<link href="styles.css" rel="stylesheet">
</head>
<head>
<meta charset="utf-8">
<title>o/</title>
</head>
<body>
<div class="header">
<button class="button" onclick="document.location='#'">
<p>About Me</button>
<button class="button" onclick="document.location='portfolio'">Portfolio</button>
<button class="button" onclick="document.location='contacts'">Contact Me</button>
</div>
<div class="font-selector">
<button id="font-toggle" class="font-selector"> <h4>dyslexic mode</h4> </button>
</div>
<div class="dark-mode-btn">
<button id="dark-toggle" class="dark-mode"> <svg width="20px" height="20px" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
<path d="M14,24A10,10,0,0,0,24,34V14A10,10,0,0,0,14,24Z"/>
<path d="M24,2A22,22,0,1,0,46,24,21.9,21.9,0,0,0,24,2ZM6,24A18.1,18.1,0,0,1,24,6v8a10,10,0,0,1,0,20v8A18.1,18.1,0,0,1,6,24Z"/>
</svg> </button>
</div>
<script src="scripts/fontswap.js"></script>
<div class="card-container">
<div class="card">
<div class="card-all-text">
<h1 class="card-title"> Hi!</h1>
<p class="card-text"> Welcome to my website, hope you enjoy it!</p>
</div>
</div>
<div class="card">
<div class="card-all-text">
<h1 class="card-title"> About me</h1>
<p class="card-text"> I'm Samalando, he/him/his. Nice to meet you :3</p>
</div>
</div>
<div class="card">
<div class="card-all-text">
<p class="card-text"> Blahaj stolen by Mazaru, please return if found</p>
</div>
</div>
<div class="card">
<div class="card-all-text">
<h1 class="card-title"> Source code?</h1>
<p class="card-text"><a href="https://github.com/Samalando/samalando.github.io">Found here :3 </a></p>
</div>
</div>
<div class="card">
<div class="card-all-text">
<h1 class="card-title">How can I contact you or give you money?</h1>
<h3 class="card-text"><a href="contacts.html"> Here :3 </a></h3>
</div>
</div>
</div>
</body>
</html>