-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (84 loc) · 3.17 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
76
77
78
79
80
81
82
83
84
85
86
87
<html>
<head>
<!-- Standard Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<!-- start of scripts section -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/fomantic-ui@2.8.7/dist/semantic.min.css">
<script src="https://cdn.jsdelivr.net/npm/fomantic-ui@2.8.7/dist/semantic.min.js"></script>
<script>
$(function(){
$("#header").load("https://raw.githubusercontent.com/iKrazy/OvalSite/main/assets/html/header.html");
$("#footer").load("https://raw.githubusercontent.com/iKrazy/OvalSite/main/assets/html/footer.html");
});
</script>
<!-- end of scripts section -->
<!-- start of extra style section -->
<link rel="stylesheet" type="text/css" href="assets/css/allpages.css">
<style type="text/css">
<!-- start of page specific styling -->
<!-- end of page specific styling -->
</style>
<!-- end of extra style section -->
<title>DTS - Home</title>
</head>
<body>
<!-- start of navbar header section -->
<div id="header"></div>
<!-- end of navbar header section -->
<div class="flex-wrapper">
<div class="ui inverted segment">
<!-- start of main body section -->
<div class="ui main text container" style="text-align:center; vertical-align:middle;">
<h1 class="ui inverted header">wat is this page for</h1>
<p>give me some ideas </p>
<p>right now I'm porting things in and formatting, but gonna need ideas soon</p>
<div class="ui inverted horizontal section divider">Skill List</div>
<div class="ui celled grid">
<div class="row">
<div class="five wide column centered">hp</div>
<div class="five wide column centered">acc</div>
<div class="five wide column centered">def</div>
</div>
<div class="row">
<div class="five wide column centered">melee</div>
<div class="five wide column centered">ranged</div>
<div class="five wide column centered">psychic</div>
</div>
<div class="row">
<div class="five wide column centered">destruction</div>
<div class="five wide column centered">stamina</div>
<div class="five wide column centered">survival</div>
</div>
<div class="row">
<div class="five wide column centered">mining</div>
<div class="five wide column centered">mechanics</div>
<div class="five wide column centered">trading</div>
</div>
<div class="row">
<div class="five wide column centered">fletching</div>
<div class="five wide column centered">stealing</div>
<div class="five wide column centered">metalworking</div>
</div>
<div class="row">
<div class="five wide column centered">explosives</div>
<div class="five wide column centered">farming</div>
<div class="five wide column centered">chemistry</div>
</div>
<div class="row">
<div class="five wide column centered">guildwork</div>
<div class="five wide column centered">TBD</div>
<div class="five wide column centered">TBD</div>
</div>
</div>
</div>
</div>
</div>
<!-- end of main body section -->
<!-- start of end footer section -->
<div id="footer"></div>
<!-- end of end footer section -->
</body>
</html>