-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (60 loc) · 2.12 KB
/
index.html
File metadata and controls
111 lines (60 loc) · 2.12 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<DOCTYPE html>
<html>
<head>
<!-- <meta charset="utf-8"> -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./css/main.css">
<script src="https://cdn.rawgit.com/zenorocha/clipboard.js/v1.5.10/dist/clipboard.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="./js/main.js"></script>
<title>PlugRPG</title>
</head>
<body>
<div id="section-intro">
<div id="background"></div>
<div id="header">
<ul>
<li><div>About</div></li>
<li><div>Contact</div></li>
<li><div>Install</div></li>
<li><div>FAQ</div></li>
<li><div>Support</div></li>
</ul>
</div>
<div id="content">
<h1 id="product-name">PlugRPG</h1>
<h3 id="product-desc">Jam out while defeating your foes</h3>
</div>
</div>
<div id="section-about">
<div id="section-about-content">
<h1 class="test">About</h1>
</div>
</div>
<div id="section-contact">
<div id="section-contact-content">
<h1 class="test">Contact</h1>
</div>
</div>
<div id="section-install">
<div id="section-install-content">
<h1 class="test">Install</h1>
</div>
</div>
<div id="section-faq">
<div id="section-faq-content">
<h1 class="test">FAQ</h1>
</div>
</div>
<div id="section-support">
<div id="section-faq-content">
<h1 class="test">Support</h1>
</div>
</div>
<div id="footer">
<div id="section-footer-content">
<h1 class="test">Footer</h1>
</div>
</div>
</body>
</html>