-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (99 loc) · 3.76 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<title>Reise :: Best Travel</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="favicon.ico">
<link href="css/style.css" rel="stylesheet">
<meta name="application-name" content="Notes" />
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/black-tie/jquery-ui.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/note-list.js"></script>
<link rel="stylesheet" href="./css/StyleSheet1.css"/>
</head>
<body>
<div class="wrapper formcontainer">
<div class="wrapper__inner">
<div class="notepad">
<div class="">
<h1 class="w3-container" style="text-align: center;">Reise</h1>
</div>
<div class="w3-panel">
<form id="uservalue" action="#">
<div class="col">
<div class="form-group">
<label>City:</label><br>
<input name="city" id="city" class="form-control" />
<!--
<select class="form-control">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
-->
<br>
</div>
<div class="form-group">
<label>State:</label><br>
<input name="state" id="state" class="form-control" />
<!--
<select class="form-control">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
-->
<br>
</div>
<div class="form-group">
<label >Country:</label><br>
<input name="country" id="country" class="form-control" />
<!--
<select class="form-control">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
-->
<br>
</div>
</div>
<div class="col">
<div>
<div class="form-group">
<label > Start Date:</label><br>
<input class="form-control" id="Startdate" /><br>
</div>
<div>
<input type="button" id="uservaluesubmit" class="btn btn-primary w3-right col-xs-4 SubBtn" value="Submit"/>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<br/>
<div class=" wrapper resultcontainer">
<h2>Weather Report</h2>
<div class="wrapper__inner">
<div class="notepad">
<div class="sortable">
</div>
</div>
</div>
</div>
</body>
</html>