-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (67 loc) · 2.94 KB
/
index.html
File metadata and controls
67 lines (67 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<script src="script.js"></script>
<title>OpenLoRaNet</title>
</head>
<body>
<div class="hero-header">
<a href="#">Home</a>
<a href="#data">Data</a>
<a href="#">Setup</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</div>
<div class="head">
<h3>Make the <span class="world">WORLD</span> connected with</h3>
<div class="underline-title">
<h1>Open<span class="loranet">LoRaNet</span></h1>
<div class="underline"></div>
</div>
<h3 class="description">OpenLoRaNet is an Open-Source mesh network made for sharing various sensor data.</h3>
<div class="flip-box flip-box-1">
<div class="flip-box-inner">
<div class="flip-box-front">
<h2 class="flip-card-emoji">🌡️</h2>
<h2 class="flip-card-title">Accurate sensor data</h2>
</div>
<div class="flip-box-back">
<h3>OpenLoRaNet uses a volontary network, wich can provide more sensors than regulars services, and cover more specific zones.</h3>
</div>
</div>
</div>
<div class="flip-box flip-box-2">
<div class="flip-box-inner">
<div class="flip-box-front">
<h2 class="flip-card-emoji">🌐</h2>
<h2 class="flip-card-title">Decentralized, stable and Open Source</h2>
</div>
<div class="flip-box-back">
<h3>Our network is Open Source and uses LoRa to create a mesh network between volonteers, wich makes our service more stable and decentralized.</h3>
</div>
</div>
</div>
</div>
<div id="data">
<div class="data-content">
<div class="data-search">
<input type="text" name="location" id="input-location" placeholder="Specify a location...">
<select name="sensors" id="sensor-select">
<option value="sens-select">Select a sensor...</option>
<option value="sens-all">I want all sensors</option>
<option value="sens-temperature">Temperature sensor</option>
<option value="sens-humidity">Humidity sensor</option>
<option value="sens-noise">Noise sensor</option>
<option value="sens-light">Photo resistor</option>
<option value="sens-other">Other</option>
</select>
<button type="submit" class="button-search">Search !</button>
</div>
</div>
</div>
</body>
</html>