-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
176 lines (153 loc) · 4.76 KB
/
index.html
File metadata and controls
176 lines (153 loc) · 4.76 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!--
FILE NAME: npmindex.html
WRITTEN BY: Carl Smestad
WHEN: October 2018
PURPOSE: Give the user basic information about what DroneLOAN does.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DroneLOAN</title>
<link rel="stylesheet" href="./styles/style.css">
<link rel="shortcut icon" type="image/png" href="./img/misc/droneIcon.png">
</head>
<body>
<header>
<nav id="navigation"></nav>
</header>
<!-- Tittel og tekst-->
<section class="container" id="content">
<div class="row white">
<div class="col-12" id="slogan">
<h1>DroneLOAN</h1>
<p>Renting drones has never been easier.</p>
</div>
<!-- Bilder med garantier-->
<div class="col-4 guaranties" id="renter1">
<p>
<img src="./img/misc/Guaranties1.png" alt="Affordable prices">
</p>
</div>
<div class="col-4 guaranties" id="renter2">
<p>
<img src="./img/misc/Guaranties2.png" alt="Affordable prices">
</p>
</div>
<div class="col-4 guaranties" id="renter3">
<p>
<img src="./img/misc/Guaranties3.png" alt="Affordable prices">
</p>
</div>
<div class="col-12" id="introduction">
<p>
At DroneLOAN we do our best to ensure the best rental deals on high-end drones.
Check out our drones below. Please fill out the form in the contact tab for any inquiry.
</p>
</div>
</div>
<!-- Seksjon 2 med top renters-->
<div class="row white">
<div class="col-12">
<h1>Top rented drones</h1>
</div>
<div class="col-4 renter">
<a href="./droneSpecific.html?id=2">
<div class="wrapper">
<p><img src="img/drones/dji/phantom4pro/p4pro2.png" alt="Top renter 1" class="image" id="phantom4"></p>
<div class="middle">
<div class="text">Learn More</div>
</div>
</div>
</a>
</div>
<div class="col-4 renter">
<a href="./droneSpecific.html?id=6">
<div class="wrapper">
<p><img src="img/drones/dji/inspire/inspire1.png" alt="Top renter 1" class="image" id="inspire2"></p>
<div class="middle">
<div class="text">Learn More</div>
</div>
</div>
</a>
</div>
<div class="col-4 renter">
<a href="./droneSpecific.html?id=4">
<div class="wrapper">
<p><img src="img/drones/dji/mavicpro/mavicpro1.png" alt="Top renter 1" class="image" id="mavic2"></p>
<div class="middle">
<div class="text" id="errorMargin">Learn More</div>
</div>
</div>
</a>
</div>
<div class="col-4 renter" id="specifications1">
<p>DJI PHANTOM 4</p>
<ul>
<li>
<p>Superior stabilization</p>
</li>
<li>
<p>Excellent range</p>
</li>
<li>
<p>Long Battery life</p>
</li>
<li>
<p>4k 60FPS</p>
</li>
</ul>
</div>
<div class="col-4 renter" id="specifications2">
<p>DJI Inspire 2</p>
<ul>
<li>
<p>Optical Zoom Camera</p>
</li>
<li>
<p>6K CinemaDNG /RAW</p>
</li>
<li>
<p>Dual Battery system</p>
</li>
<li>
<p>Maximum Speed: 94kph</p>
</li>
</ul>
</div>
<div class="col-4 renter" id="specifications3">
<p>DJI Mavic 2 Pro</p>
<ul>
<li>
<p>Optical Zoom Camera</p>
</li>
<li>
<p>4x Lossless FHD Video</p>
</li>
<li>
<p>48MP Super Resolution</p>
</li>
<li>
<p>31min Flight Time</p>
</li>
</ul>
</div>
<!-- Heldekkende video og beskrivelse under-->
<div class="col-12" id="droneFootage">
<p>
<iframe id="droneFootageSize" src="https://www.youtube.com/embed/UeZtlFeEcNg?autoplay=1&mute=1"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<!--<iframe width="720" height="405" src="https://www.youtube.com/watch?v=UeZtlFeEcNg&t" frameborder="0" allowfullscreen id="droneFootage" ></iframe>-->
</p>
<br>
</div>
<div class="col-12" id="droneFootageDescription">
<p>Footage from Chernobyl with one of our DJI drones.</p>
</div>
</div>
</section>
<footer id="footer"></footer>
<script type="module" src="scripts/index.js"></script>
</body>
</html>