-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (69 loc) · 2.45 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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah|Quicksand|Titillium+Web" rel="stylesheet">
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<link href="./styles/styles.css" rel="stylesheet" />
</head>
<body>
<div class="container" style="margin-top: 200px">
<div class="row" style="height: 220px">
<div class="col-md-offset-2 col-md-6 col">
<div id="devicemgmtinfo" class="blockcontainer blockTitle">
DEVICE MANAGEMENT
</div>
</div>
</div>
<div class="row" style="height: 230px">
<div class=" col-md-2 col">
<div class="blockcontainer blockTitle">
SENSOR
</div>
</div>
<div class="col-md-2 col">
<div class="blockcontainer blockTitle">
GATEWAY
</div>
</div>
<div class="col-md-2 col">
<div class="blockcontainer blockTitle">
TRANSPORT
</div>
</div>
<div class="col-md-2 col">
<div class="blockcontainer blockTitle">
SECURITY
</div>
</div>
<div class="col-md-2 col">
<div class="blockcontainer blockTitle">
ROUTING
</div>
</div>
<div class="col-md-2 col">
<div class="blockcontainer blockTitle">
LOB
</div>
</div>
</div>
<div class="row">
<div class=" col-md-12 col">
<div id="info" class="blockinfo">
Some text
</div>
</div>
</div>
</div>
</body>
</html>
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" type="text/javascript" charset="utf-8"></script>
<script>
(function () {
$("#devicemgmtinfo").hover(function () {
$("#info").text("Hej hopp")
});
} ())
</script>