-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (99 loc) · 3.46 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="zh-Hant-TW">
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Ttravel</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/all.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="images/logo.svg" type="image/x-icon">
<link rel="icon" href="images/logo.svg" type="image/x-icon">
</head>
<body id="top">
<!-- header / Menu
================================================== -->
<header>
<div class="header-logo">
<a href="index.html">Ttravel</a>
</div>
<a id="header-menu-trigger" href="#0">
<span class="header-menu-icon"></span>
</a>
<nav id="menu-nav-wrap">
<a href="#0" class="close-button" title="close"><span>Close</span></a>
<h3>Ttravel.</h3>
<ul class="nav-list">
<li class="current"><a href="index.html" title="">Home</a></li>
<li><a href="room.html" title="">Room</a></li>
<li><a href="contact.html" title="">Contact</a></li>
</ul>
<p class="sponsor-text" style="margin-top: 50vh;">
Ttravel with<br><span>HTML|CSS|SASS</span>
</p>
</nav> <!-- end #menu-nav-wrap -->
</header> <!-- end header -->
<!-- home
================================================== -->
<section id="home">
<img src="images/index_photocut.png" alt="photo-cut" style="width: 150px; height: 60px; margin-left: 63vw;">
<div class="overlay"></div>
<div class="home-content-table">
<div class="home-content-tablecell">
<div class="row">
<div class="col-twelve">
<h1 class="animate-intro">
You're here on tour. <br>
Reserve Now!
</h1>
<div class="more animate-intro">
<a class="button stroke" href="room.html">
Learn More
</a>
</div>
</div> <!-- end col-twelve -->
</div> <!-- end row -->
</div> <!-- end home-content-tablecell -->
</div> <!-- end home-content-table -->
<ul class="home-social-list">
<li class="animate-intro">
<a href="#"><i class="fa fa-facebook-square"></i></a>
</li>
<li class="animate-intro">
<a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li class="animate-intro">
<a href="#"><i class="fa fa-instagram"></i></a>
</li>
</ul> <!-- end home-social-list -->
</section> <!-- end home -->
<!-- footer
================================================== -->
<div class="footer-bottom">
<div class="row">
<div class="col-twelve">
<div class="copyright">
<span>Design by <a href="#">Alicia</a> 2023.</span>
</div>
</div>
</div>
</div> <!-- end footer-bottom -->
<!-- Java Script
================================================== -->
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>