-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
111 lines (91 loc) · 4.23 KB
/
contactus.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
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact us</title>
<link rel="stylesheet" type="text/css" href="classes.css">
</head>
<body>
<table width="100%">
<tbody>
<tr>
<td>
<img src="images/Logo.png"/>
</td>
<td>
<a href="news.html">Middle-Earth</a>
</td>
<td>
<a href="contactus.html">Contact us</a>
</td>
<td>
<a href="gallery.html">Gallery</a>
</td>
</tr>
</tbody>
</table>
<br>
<br>
<a href="news.html">Middle-Earth</a> <span>></span> <a href="contactus.html">Contact us</a>
<br>
<br>
<h1 style="margin-left: 50px">Contact us</h1>
<!-- Гледай да подреждаш таговете подобаваща на това кой под кой таг се намира.
Ако имаш таблица с един ред и една колона ... трябвва ли ти реално таблица?
-->
<table class="tbl">
<tbody>
<tr>
<td>
<form style="margin-left: 50px" action="/nqma takova ne6to.php">
<div>
<!-- Гледай да не слагаш няколко тага на един ред -->
<!-- Този <span> може да стане <label> -->
<!-- Не е нужно да слагаш type="text", тъй като това е типът по подразбиране на браузъра -->
<span>Tell us your name:</span>
<input style="margin-left: 10px" type="text" name="question" placeholder="Name" required>
</div>
<br>
<br>
<div>
<span>Your email:</span>
<input style="margin-left: 10px" type="text" name="email" placeholder="[email protected]" required>
</div>
<br>
<br>
<div>
<span class="test">Do you have any questions regarding Middle-Earth?</span>
<textarea placeholder="Question" style="margin-left: 10px"></textarea>
</div>
<br>
<br>
<div>
<!-- Много ясно че Elf защо изобщо питаш? -->
<span>Tell us your favourite race from Middle-Earth:</span>
<select style="margin-left: 10px">
<option value="orc">Orc</option>
<option value="hobbit">Hobbit</option>
<option value="elf">Elf</option>
<option value="dwarf">Dwarf</option>
<option value="human">Human</option>
</select>
</div>
<br>
<br>
<!-- Да сложиш по един ентер за да подредиш кода е супер. Два ентера обаче става малко множко.
Така разводняваш самия код, и става по сложен за четене, тъй като виждаш по-малко неща на един екран -->
<div>
<input type="file" name="pic" accept="image/*">
</div>
<br>
<br>
<input type="submit" name="submit">
</form>
</td>
</tr>
</tbody>
</table>
</body>
</html>