-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
61 lines (57 loc) · 1.5 KB
/
example.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!--
====================================================
FT Bootstrap Theme by Philip Brembeck
Licensed under the MIT license
http://opensource.org/licenses/MIT
====================================================
Including:
-> Bootstrap: getbootstrap.com
-> animate.css: animate.style
====================================================
-->
<title>FT Bootstrap Theme</title>
<link href="assets/img/favicon.ico" rel="shortcut icon">
<!-- Main styles -->
<link href="assets/css/main.css" rel="stylesheet">
<!-- Mobile Optimizing -->
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<!-- First Screen -->
<section id="top" class="cons">
<div class="menue animated slideInDown">
<a href="#">Link 1</a>
</div>
<div class="text animated fadeIn">
<h2>Title</h2>
<h3>Subtitle</h3>
<ul class="buttons">
<li><a href="#mid">Learn more</a></li>
</ul>
</div>
</section>
<!-- Second Screen -->
<section id="mid" name="mid" class="cons">
<div class="text">
<h2>Title</h2>
<h3>Subtitle</h3>
<ul class="buttons">
<li><a href="#">Learn more</a></li>
</ul>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="lefted"><a href="#">FT Bootstrap Theme</a></div>
<div class="righted">
<a href="https://github.com/jokenetwork">GitHub</a>
</div>
</div>
</footer>
</body>
</html>