forked from KristianZH/PCHMI-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
38 lines (38 loc) · 1.25 KB
/
contacts.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
<!DOCTYPE html>
<html>
<head>
<title>Контакти</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/contacts.css" />
</head>
<body>
</html>
<div class="container">
<div style="text-align:center">
<h2>Свържете се с нас</h2>
</div>
<div class="row">
<div class="column">
<img src="images/contacts.jpg" style="width:100%">
</div>
<div class="column">
<form action="index.php">
<label for="fname">Име</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Фамилия</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="country">Държава</label>
<select id="country" name="country">
<option value="australia">Bulgaria</option>
<option value="canada">Romania</option>
<option value="usa">Greece</option>
</select>
<label for="subject">Тема</label>
<textarea id="subject" name="subject" placeholder="..." style="height:170px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</div>
</div>
</body>
</html>