-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (121 loc) · 3.75 KB
/
index.html
File metadata and controls
148 lines (121 loc) · 3.75 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<title>Index.html</title>
<link rel="stylesheet" href="practice/style.css">
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<script>
//alert("Your computer is going to be permanantly destroyed if you do not pay, you have 24 hours...");
</script>
<style>
nav {
position: sticky;
top: 0;
}
.topnav {
margin-top: 0;
overflow: hidden;
position: sticky;
top: 0;
background-color: #ffffff;
border-radius: 5px;
border: solid 2px #000000;
padding: 20px;
gap: 40px;
display: flex;
justify-content: center;
}
a {
color: #000000;
text-align: center;
text-decoration: none;
font-size: 1.5rem;
font-family: "Funnel Sans", sans-serif;
font-weight: bold;
}
a:hover {
text-decoration: underline;
color: darkblue;
}
.link-holder {
align-items: center;
justify-content: center;
background-color: white;
border: 2px solid black;
border-radius: 10px;
padding: 5px;
transition: background-color 0.2s ease;
}
.link-holder:hover {
transform: background-color 0.2s ease;
}
</style>
</head>
<body>
<nav>
<div class="topnav">
<div class="link-holder"><a href="https://goldenmaca.github.io">Home</a></div>
<div class="link-holder"><a href="https://goldenmaca.github.io/about.html">About</a></div>
<div class="link-holder"><a href="https://goldenmaca.github.io/projects/recipes/index.html">Recipes</a></div>
<div class="link-holder"><a href="https://goldenmaca.github.io/contact.html">Contact</a></div>
<div class="link-holder"><a href="https://goldenmaca.github.io/blog.html">Blog</a></div>
</div>
</nav>
<h1>Welcome to my website</h1>
<hr>
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/hBuIWNralII?si=U0e9s7T3m2vP0Q4T&start=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p>I like playing football, and ultimate frisbee(which I play for the school team). I like taking vacations with my family</p>
<p>I have two <del>dogs</del> cats</p>
<p><u>This Word</u> is underlined</p>
<hr>
<p>This is superscript (2<sup>nd</sup>)</p>
<p>This is subscript (O<sub>2</sub>)</p>
<hr>
<p>When you try to access a non-existent file, you might see the following message: <samp>Error: File not found</samp>.</p>
<p><mark>This is highlighted</mark></p>
<p><strong>This is bolded</strong></p>
<div>
<img src="practice/cd.png">
<!--Links-->
<p><a href="https://goldenmaca.github.io/practice/minimal.html">Check out minimal.html</a></p>
<p><a href="https://goldenmaca.github.io/practice/terminal.html">Chech out how to use Terminal</a></p>
</div>
<h1>click at your own expense, i am not responsible for any damages.</h1>
<h1>|DEADLY PARROT| ONLY CLICK THIS IF YOU KNOW WHAT YOU ARE DOING</h1>
<a href="aspod.py" download>
<img src="/images/parrot.png" alt="W3Schools">
</a>
<img src="images/elephant.png" usemap="#image-map">
<map name="image-map">
<area target="" alt="See the Zoo" title="See the Zoo" href="practice/zoo/animals.html" coords="143,70,168,65,197,73,228,69,242,65,264,50,290,45,301,48,314,48,338,42,389,72,407,80,421,87,432,93,442,108,441,129,427,144,412,147,400,133,393,122,348,130,352,147,348,151,305,151,307,188,308,237,281,240,268,196,255,199,253,236,227,241,204,223,164,230,162,242,138,247,135,239,125,245,92,244,97,210,105,189,92,170,85,168,83,153,86,137,100,115,118,90" shape="poly">
</map>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</body>
</html>