-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (38 loc) · 1.54 KB
/
index.html
File metadata and controls
45 lines (38 loc) · 1.54 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
<!DOCTYPE html>
<html>
<head>
<title>SAMPLE WEBSITE</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.2.13/dist/semantic.min.css">
</head>
<body>
<nav class="ui stackable container four item menu">
<a class="item">Services</a>
<a class="item">Team</a>
<a class="item">Clients</a>
<a class="item">Contact Us</a>
</nav>
<div class=" ui stackable container grid ">
<div class="left floated two wide column">
<div class="ui vertical fluid tabular menu">
<a class=" item">Bio</a>
<a class="item">Pics</a>
<a class="item">Companies</a>
<a class="item">Links</a>
</div>
</div>
<div class="nine wide column stretched">
<div class="ui raised stretched segment" id="app">
{{ message }}
</div>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/semantic-ui@2.2.13/dist/semantic.min.js"></script>
<script src="http://cdn.jsdelivr.net/jquery.glide/1.0.6/jquery.glide.min.js"></script>
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<script src="./index.js"></script>
</html>