-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (43 loc) · 1.35 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
<!doctype html>
<html>
<head>
<title>Set Page Color Popup</title>
<link rel="stylesheet" href="./Semantic-UI-CSS-master/semantic.min.css">
<link rel="stylesheet" href="./style.css">
<style>
body{
background-image: url(./images/bg02.png);
background-size: cover;
background-color: #FBEAF2;
background-repeat: no-repeat;
cursor: url('./images/bg05.ico'), pointer;
}
</style>
</head>
<body>
<img src="./images/snow.svg" alt="Breaking Borders Logo" height="300" width="300">
<div class="ui top attached tabular menu">
<a class="item" data-tab="first">First</a>
<a class="item" data-tab="second">Second</a>
<a class="item active" data-tab="third">Third</a>
</div>
<div class="ui bottom attached tab segment" data-tab="first">
First
</div>
<div class="ui bottom attached tab segment" data-tab="second">
Second
</div>
<div class="ui bottom attached tab segment active" data-tab="third">
Third
</div>
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous">
</script>
<script src="./Semantic-UI-CSS-master/semantic.min.js"></script>
<script>
$('.tabular.menu .item').tab();
</script>
</body>
</html>