-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
88 lines (66 loc) · 2.73 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
<!DOCTYPE html>
<html>
<head>
<title>Brinco Pro - Home</title>
<link rel=stylesheet href="style/main.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,400" rel="stylesheet">
</head>
<body>
<!--Nav bar-->
<ul class="menu">
<li><img src="images/logo.png" alt="Logo" style="width:70px;height:70px;"></li>
<li><a href="index.html">Home</a></li>
<li><a href="https://meinspitzname.github.io/shop.html">Shop</a></li>
<li style="float:right"><a href="contact.html">Contact</a></li>
<li style="float:right"><a href="about.html">About us</a></li>
</ul>
<!-- Main content -->
<div style="margin-top: 30px; padding: 10px">
<h1>Contact form</h1>
<div class="container">
<form action="/action_page.php">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="country">Country</label>
<select id="country" name="country">
<option value="de">Germany</option>
<option value="fr">France</option>
<option value="bol">Bolivia</option>
<option value="bol">Chile</option>
</select>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</div>
<!-- Footer (using sample code from Tuturialzine.com - License allows Commercial Use -->
<footer class="footer-distributed">
<div class="footer-left">
<img src="images/logo.png" alt="Logo" style="width:90px;height:90px;">
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p><span>21 Why Worry Lane</span> Pau, France</p>
</div>
<div>
<i class="fa fa-phone"></i>
<p>+33 555 123456</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>About the company</span>
We are Brincopro - the only real trampoline company. Buy your trampoline from the best.
</p>
</div>
</footer>
</body>
</html>