forked from muicss/mui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding-page.html
More file actions
106 lines (96 loc) · 2.31 KB
/
landing-page.html
File metadata and controls
106 lines (96 loc) · 2.31 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="../assets/mui/css/mui.min.css" rel="stylesheet" type="text/css" />
<script src="../assets/mui/js/mui.min.js"></script>
<style>
/**
* Body CSS
*/
html,
body {
height: 100%;
}
html,
body,
input,
textarea,
button {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}
/**
* Header CSS
*/
header {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 2;
}
header ul.mui-list--inline {
margin-bottom: 0;
}
header a {
color: white;
}
header a:hover {
color: white;
}
/**
* Content CSS
*/
#content-wrapper {
min-height: 100%;
margin-bottom: -80px;
padding-bottom: 80px;
}
/**
* Footer CSS
*/
footer {
height: 80px;
background-color: #eee;
border-top: 1px solid #e0e0e0;
padding-top: 15px;
}
</style>
</head>
<body>
<header class="mui-appbar mui--z1">
<div class="mui-container">
<table width="100%">
<tr class="mui--appbar-height">
<td class="mui--text-title">Brand.io</td>
<td align="right">
<ul class="mui-list--inline mui--text-body2">
<li><a href="#">About</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Login</a></li>
</ul>
</td>
</tr>
</table>
</div>
</header>
<div id="content-wrapper" class="mui--text-center">
<div class="mui--appbar-height"></div>
<br>
<br>
<div class="mui--text-display3">Brand.io</div>
<br>
<br>
<button class="mui-btn mui-btn--raised">Get started</button>
</div>
<footer>
<div class="mui-container mui--text-center mui--text-bottom">
Made with ♥ by <a href="https://www.muicss.com">MUICSS</a>
</div>
</footer>
</body>
</html>