-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (69 loc) · 3.1 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Oleo+Script:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Teko:400,700" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="static/css/jobForm.css">
<meta charset=utf-8>
</head>
<body background="static/img/nexus5ver4.jpg">
<section id="contact">
<div class="contact-section">
<div class="container">
<label for="hometown">Ne tür bir iş?</label><br>
<div class="dropdown">
<select name="one" class="dropdown-select">
<option value="">Seç…</option>
<option value="1">Marangoz</option>
<option value="2">Tesisatçı</option>
<option value="3">Temizleyici</option>
<option value="4">Teknisyen</option>
<option value="5">Mekanik</option>
</select>
</div>
<div class="form-group">
<label for="telephone">Bütçeniz ne kadar?</label>
<input type="tel" class="form-control" id="telephone">
</div>
<div class="form-group">
<label for="exampleInputUsername">Işi daha önce bitirmek</label>
<input type="text" class="form-control" id="" >
</div>
<div class="form-group">
<label for ="description"> Açıklama </label>
<textarea class="form-control" id="description"></textarea>
</div>
<div class="form-group">
<label for="exampleInputUsername">Yer seç</label>
<div id="map"></div>
<script>
function initMap() {
var uluru = {lat: 41.037002, lng: 28.985092};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 10,
center: uluru
});
var marker = new google.maps.Marker({
position: uluru,
map: map
});
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAnQchnXyCFD6jChN7-WJyM7EKb7Kg97Y4&callback=initMap">
</script>
</div>
<div class="form-group">
<label for="exampleInputUsername">Resim seç</label><br>
<img src="static/img/broken-bathroom-faucet.jpg" alt="Smiley face" >
</div>
<div class="form-group">
<button type="button" class="btn btn-default submit">Gönder</button>
</div>
</div>
</body>
</html>