-
Notifications
You must be signed in to change notification settings - Fork 1
/
hello-world.html
100 lines (82 loc) · 3.01 KB
/
hello-world.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>zenCSS - Hello World</title>
<!------------ include zenCSS CSS files ------------->
<link rel="stylesheet" href="dist/zen.min.css" />
<link rel="stylesheet" href="dist/icons.min.css" />
</head>
<!------------ Declare zen class on the body to use zenCSS on the page ------------->
<body class="zen">
<!------------ Header/A spot/Hero ------------->
<header class="header-sticky">
<div class="pl-2" id="header-logo">
<img src="dist/img/logo.png" alt="" />
</div>
<div>
<a id="hamburger-button-2">
<img src="dist/img/icons/bars.svg" class="icon-header up-3" alt="Menu" />
</a>
</div>
<nav class="top-nav">
<button id="close-button">
<a class="close"></a>
</button>
<ul>
<li><a href="#" class="nav-link">Home</a></li>
<li>
<a href="#" class="nav-link">Services</a>
</li>
<li>
<a href="#" class="nav-link">Contact</a>
</li>
</ul>
</nav>
</header>
<!------------ B spot ------------->
<main class="container-fluid page-title-here">
<z-container-fluid class="theme-cta card hero-section m-0">
<z-container>
<z-row>
<z-col class="card center">
<h1 class="headline">👋 Hello World</h1>
<p class="lead">What will you create from here?</p>
</z-col>
</z-row>
</z-container>
</z-container-fluid>
<!------------ C spot ------------->
<z-container-fluid class="name-of-section bg-grey-2">
<z-container class="page-section">
<z-row>
<z-col>Another Section</z-col>
</z-row>
</z-container>
</z-container-fluid>
<!------------ D spot ------------->
<z-container-fluid class="name-of-section bg-grey-3">
<z-container class="page-section">
<z-row>
<z-col>Another Section </z-col>
</z-row>
</z-container>
</z-container-fluid>
<!------------ E spot ------------->
<z-container-fluid class="name-of-section bg-grey-4">
<z-container class="page-section">
<z-row>
<z-col> Another Section</z-col>
</z-row>
</z-container>
</z-container-fluid>
</main>
<!------------ Footer ------------->
<footer>
<small class="center">© <span id="current-year"></span>. Built using zenCSS. </small>
</footer>
<!------------ Include zenCSS JS ------------->
<script src="dist/zencss.min.js"></script>
</body>
</html>