-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
51 lines (48 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="assets/fonts/style.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body class="external-page">
<h1>Contact Us</h1>
<div class="content-contact">
<section>
<img src="assets/img/logo.png" alt="" srcset="">
<p>
Daft Punk's Discovery is a groundbreaking album that blends the duo's signature house music with a wide
array of
genres, including disco, funk, rock, and electronic pop. Released in 2001, the album marked a
significant
evolution in Daft Punk's sound, introducing a more melodic and accessible approach compared to their
earlier
work. Discovery is celebrated for its innovative use of samples, vocoder-heavy vocals, and its nostalgic
nods to
1970s and 1980s music.
</p>
</section>
<section>
<form id="contact-form">
<p>Name</p>
<input type="text">
<p>E-mail</p>
<input type="text">
<p>Phone number</p>
<input type="text">
<p>Message</p>
<textarea></textarea>
<p></p>
<button>Send</button>
</form>
</section>
</div>
<script>
document.querySelector("#contact-form").addEventListener("submit", (e) => {
e.preventDefault();
})
</script>
</body>
</html>