-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
86 lines (73 loc) · 2.38 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jane Doe - Contact</title>
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div id=barraDeLinks>
<!--Menu e logo vão dentro dessa div-->
<h1 id="logo">JANE DOE</h1>
<ul class=logo>
<li class=logo>
<a href="index.html">
Home
</a>
</li>
<li class=logo>
<a href="about.html">
About
</a>
</li>
<li class=logo>
<a href="music.html">
Music
</a>
</li>
<li class=logo>
<a href="contact.html">
Contact
</a>
</li>
</ul>
</div>
<div id=directContact></div>
<div id=contact>
<h2>Contact</h2>
<form>
<label>Name</label>
<input type="text" name="nomeUsuario">
<label>Email</label>
<input type="email" name="emailUsuario">
<label>Message</label>
<textarea></textarea>
How did you found Jane's music?
Instagram
facebook
Youtube
Do you want to subscribe to our newsletter?
</form>
<iframe id=contactMap src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d14624.191902814306!2d-46.6753419!3d-23.6026123!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x739f0ddb0439cf94!2sDigital%20House%20S%C3%A3o%20Paulo!5e0!3m2!1spt-BR!2sbr!4v1584121565797!5m2!1spt-BR!2sbr" width="400" height="300" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
<h3>MANAGEMENT | Karen Blanche</h3>
<p>email: [email protected]</p>
<p>phone: 123-456-7890</p>
<hr />
<h3>BOOKING | Daniel Ku</h3>
<p>email: [email protected]</p>
<p>phone: 123-456-7890</p>
<hr />
<h3>LABEL | Wix Records, Jake Coldham</h3>
<p>email: [email protected]</p>
<p>phone: 123-456-7890</p>
<hr />
<h3>PR | That Girl Pr, Sarah Brookstone</h3>
<p>email: [email protected]</p>
<p>phone: 123-456-7890</p>
</div>
<div id=rodape>
Copyright - Jane Doe - 2020
</div>
</body>
</html>