-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
147 lines (129 loc) · 5.78 KB
/
index.html
File metadata and controls
147 lines (129 loc) · 5.78 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>CSS Design System</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/style.css">
<meta name="theme-color" content="#fafafa">
</head>
<body class="">
<header>
<h1 class="fake-logo">Fake Logo</h1>
<nav>
<a href="">Home</a>
<a href="">About</a>
<a href="">Contact</a>
</nav>
<!-- <hr> -->
</header>
<main class="layout">
<!-- Add your site or application content here -->
<!-- <h1>Hello</h1> -->
<h2>I'm red!</h2>
<p>Hello world! This is HTML5 <a href="">Boilerplate</a>. Lorem ipsum dolor sit, amet consectetur adipisicing
elit.
Nisi
quas totam
rerum tempora dolor, aperiam mollitia fugiat odio ut cumque voluptates velit consectetur minus officiis esse
repellendus, architecto deleniti neque?</p>
<h3>I'm a nice yellow I hope.</h3>
<p>Lorem ipsum dolor sit, <strong>amet consectetur</strong> adipisicing elit. Nisi quas totam
rerum tempora dolor, aperiam mollitia fugiat odio ut cumque voluptates velit consectetur minus officiis esse
repellendus, architecto deleniti neque?</p>
<h4>Blue H4</h4>
<div class="grid">
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Nisi quas totam
rerum tempora dolor, aperiam mollitia fugiat odio ut cumque voluptates velit consectetur minus officiis
esse
repellendus, architecto deleniti neque?</p>
<!-- <h5>List below</h5> -->
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
</div>
<hr>
<h6>Blockquote</h6>
<blockquote>Lorem ipsum dolor sit amet consectetur adipisicing elit. Praesentium, commodi rerum, cumque quia
distinctio voluptates, cum quos fuga assumenda <a href="">Boilerplate</a> eos aperiam fugit officiis facilis
dolorum aliquid suscipit ut
saepe eius.</blockquote>
<div class="card">
<h3>Card Heading</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Praesentium, commodi rerum, cumque q</p>
<button>Accept</button>
</div>
<hr>
<div class="split">
<aside>
<p>Lorem ipsum dolor sit, <strong>amet consectetur</strong> adipisicing elit. Nisi quas totam
rerum tempora dolor, aperiam mollitia fugiat odio ut </p>
</aside>
<p>Lorem ipsum dolor sit, <strong>amet consectetur</strong> adipisicing elit. Nisi quas totam
rerum tempora dolor, aperiam mollitia fugiat odio ut cumque voluptates velit consectetur minus officiis
esse
repellendus, architecto deleniti neque?</p>
</div>
<hr>
<form action="">
<div class="grid cols-3">
<div class="formRow"><label for="input">Name:</label><input placeholder="John Smit" id="input"
type="text">
</div>
<div class="formRow"><label for="number">Number:</label><input id="number" placeholder="1234567890"
type="number"></div>
<div class="formRow"><label for="email">Email:</label><input id="email" placeholder="mail@example.com"
type="email">
</div>
</div>
<div class="formRow"><label for="textarea">Textarea:</label>
<textarea title="textarea" name="textarea" id="textarea" cols="30" rows="10">Default text</textarea>
</div>
<div class="formRow"><label for="input">Form input:</label>
<select name="Select" id="" title="Demo select">
<option value="One">One</option>
<option value="Two">Two</option>
<option value="Three">Three</option>
</select>
</div>
<div class="formRow">
<button id="submit" type="submit">Submit</button>
<button id="cancel" class="cancel" type="reset">Cancel</button>
<button type="button" disabled>Disabled</button>
<button type="button">Really really long text</button>
<button type="button">Button ⟶</button>
<br>
<button type="button" class="small">Small</button>
</div>
</form>
</main>
<footer>
<h2 class="fake-logo">Fake Logo</h2>
<nav>
<a href="">Home</a>
<a href="">About</a>
<a href="">Contact</a>
</nav>
<p>© 2020 Brandon Johnson</p>
</footer>
<!-- <script src="js/main.js"></script> -->
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<!-- <script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script> -->
</body>
</html>