-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
55 lines (49 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="home.css">
<link rel="shortcut icon" href="images/we-rock-website-favicon-color.png" />
<title>We Rock</title>
</head>
<body>
<div class="container">
<div class="container-top">
<div class="head">
<div class="header-logo"><img class="header-icon" src="images/we-rock-low-resolution-logo-color-on-transparent-background.png" alt=""></div>
<div class="nav-bar"><a href="#">Home</a><a href="Services.html">Services</a><a href="Contact.html">Contact Us</a></div>
</div>
<div class="intro">
<p class="intro-heading">We Rock</p>
<p class="intro-slogan">At We Rock,
we understand that each concert is unique,
and we work closely with artists and their teams to create a customized event that exceeds your expectations.
</p>
</div>
</div>
<div class="main-form">
<p>To Contact Us, fill the form below:</p>
<form action="post" class="form">
<label for="name">Name:</label>
<input type="text" />
<label for="mail">Email:</label>
<input type="email" />
<label for="number">Number:</label>
<input type="number" />
<label for="review">Details about event:</label>
<textarea name="review" id="review" cols="30" rows="10"></textarea>
<button type="button">Submit</button>
</form>
</div>
<div class="footer">
<div class="footer-para"><img src="images/we-rock-website-favicon-color.png" alt="We rock logo"></div>
<p>©
2023 We Rock
</p>
</div>
</div>
</body>
</html>