-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
57 lines (53 loc) · 1.57 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/style.css">
<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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
</head>
<body>
<!-- contact.html
education.html
family.html
hobbies.html
index.html -->
<main>
<div class="burger" onclick='toggleBurgerImage();$("header").slideToggle()'>
<img src="img/open.svg" alt="">
</div>
<script>
function toggleBurgerImage() {
let src = $(".burger img").attr("src");
if (src == "img/open.svg") {
$(".burger img").attr("src", "img/close.svg");
} else {
$(".burger img").attr("src", "img/open.svg");
}
}
</script>
<header>
<a href="index.html">Home</a>
<a href="family.html">Family</a>
<a href="hobbies.html">Education & Hobbies</a>
<a href="contact.html">Contact</a>
</header>
<div class="content contact_content">
<p>CONTACT</p>
<h1>We're here to help!</h1>
<p>Did you experience any bug? Maybe you have some questions?
<br>Contact us!</p>
<a href="mailto:[email protected]"> Click here to send us an email! </a>
</div>
</main>
<!-- <div class="border"></div> -->
<footer>
© Bye bye, its footer
</footer>
<script src="js/script.js"></script>
<script src="js/jquery-3.4.1.min.js"></script>
</body>
</html>