-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·106 lines (98 loc) · 3.46 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
<!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" />
<link
href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/png" href="img/favicon.png" />
<title>Story Finder | Exciting tours by adventurous people</title>
</head>
<body>
<main>
<section id="form" class="section-book">
<div class="row">
<div class="book">
<div class="book__form">
<form action="#" class="form">
<div class="u-margin-bottom-medium">
<h2 class="heading-secondary">
Search Story
</h2>
</div>
<div class="form__group">
<input
type="text"
class="form__input"
placeholder="Address"
id="name"
required
/>
<label for="name" class="form__label">Address</label>
</div>
<div class="form__group">
<button class="btn btn--green" type="submit">
Read story →
</button>
</div>
</form>
</div>
</div>
</div>
</section>
<section id="storySection" class="section-stories hide">
<div class="bg-video">
<video class="bg-video__content" autoplay muted loop>
<source src="img/video.mp4" type="video/mp4" />
<source src="img/video.webm" type="video/webm" />
Your browser is not supported!
</video>
</div>
<div class="u-center-text u-margin-bottom-big">
<h2 class="heading-secondary addressTitle"></h2>
</div>
<div class="row">
<div class="col-1-of-2">
<h3 class="heading-tertiary u-margin-bottom-small story-title"></h3>
<p class="paragraph story-content"></p>
<a href="#popup" class="btn btn--green">More About City →</a>
</div>
<div class="col-1-of-2">
<div class="composition"></div>
</div>
</div>
</section>
</main>
<div class="popup" id="popup">
<div class="popup__content">
<div class="popup__left"></div>
<div class="popup__right">
<a href="#section-tours" class="popup__close">×</a>
<h2
class="heading-secondary u-margin-bottom-small story-title-popup"
></h2>
<h3 class="heading-tertiary u-margin-bottom-small"></h3>
<div class="row">
<div class="col-1-of-2">
<div class="card__details">
<ul class="weather-details"></ul>
</div>
</div>
<div class="col-1-of-2">
<div class="card__details">
<ul class="dateTime-details"></ul>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.js"></script>
<script src="script/script.js"></script>
</body>
</html>