-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (32 loc) · 1009 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<main>
<nav>
<a href="https://github.com/Yuliya-beCode/404-page">Home</a> |
<a href="https://www.w3schools.com/html/html5_semantic_elements.asp">Semantic Elements</a> |
</nav>
<article>
<h1>Oops! Don't cry.</h1>
<h2>It's just a 404 ERROR</h2>
</article>
<img src="https://media2.giphy.com/media/3o7TKBxS1HArb73Pz2/giphy.gif?cid=ecf05e472355b43831dee370db1b96b86a147ddf6397092b&rid=giphy.gif" alt="">
<br>
<button id="click" onclick="myFunction()">Go back</button>
<script>
function myFunction() {
location.replace("https://github.com/Yuliya-beCode")
}
</script>
<footer>
<p>Yuliya-beCode</p>
</footer>
</main>
</body>
</html>