-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
105 lines (101 loc) · 2.98 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
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
<!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" />
<meta name="description" content="This is the contact page" />
<link href="/css/styles.css" rel="stylesheet" />
<title>Rainydays | Contact Us</title>
</head>
<body>
<header>
<div class="wrapper">
<div>
<a href="/index.html">Home</a>
</div>
<div>
<a href="/browse.html">Browse collection</a>
</div>
</div>
<div>
<a href="/cart.html"
><img class="cart" src="/images/cart.png" alt="cart icon" />
</a>
</div>
</header>
<a href="/index.html"
><img
src="/images/RainyDays_Logo-white.png"
alt="White logo of Rainydays"
class="logobigwhite"
/></a>
<main>
<div class="contact-info">
<div class="contact__child">
<h1>Our contact information:</h1>
<br />
<p>Visit us at: Lexington, New York, New York</p>
<p>Phone us at number: +45 555 168 789</p>
<p>Email us via address: Rainydays@Rainynights.rain</p>
</div>
<div class="contact__child-gmaps">
<img
class="gmaps"
src="/images/gmaps.png"
alt="a picture of google maps of the location"
/>
</div>
<div class="contact__child">
<form>
<fieldset>
<legend>Contact Rainydays</legend>
<div>
<label for="name">Full name</label>
<input type="text" name="name" id="name" class="form__input" />
</div>
<div>
<label for="email">Email</label>
<input
type="email"
name="email"
id="email"
class="form__input"
/>
</div>
<div>
<label for="tel">Phone</label>
<input type="tel" name="tel" id="tel" class="form__input" />
</div>
<div>
<label for="message">Message</label>
<textarea
id="message"
name="message"
rows="1"
cols="20"
class="message"
></textarea>
</div>
</fieldset>
</form>
</div>
</div>
</main>
<footer>
<div class="wrapper">
<div><a href="/about.html">About</a></div>
<div><a class="current" href="/contact.html">Contact</a></div>
</div>
<div>
<a href="/index.html"
><img
class="logosmall"
src="/images/RainyDays_Logo-white-small.png"
alt="small rainydays logo"
/></a>
</div>
</footer>
<div class="copyright">Copyright Rainydays LLC ©</div>
</body>
</html>