forked from xz/new.css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
213 lines (196 loc) · 6.4 KB
/
demo.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>new.css Demo</title>
<meta name="description" content="A classless CSS framework to write modern websites using only HTML.">
<meta name="keywords" content="newcss,new.css,css,xz,css framework,classless css,xz.style">
<meta property="og:title" content="new.css">
<meta property="og:description" content="A classless CSS framework to write modern websites using only HTML.">
<meta property="og:url" content="https://newcss.net">
<meta property="og:type" content="website">
<meta property="og:image" content="https://newcss.net/_assets/og.png">
<link rel="stylesheet" href="new.css">
</head>
<body>
<header>
<h1>new.css Demo</h1>
</header>
<h1>Heading 1</h1>
<p>This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<h2>Heading 2</h2>
<p>This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<h3>Heading 3</h3>
<p>This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<h4>Heading 4</h4>
<p>This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<h5>Heading 5</h5>
<p>This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<h6>Heading 6</h6>
<p>This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<br>
<hr>
<br>
<p>
Lorem <mark>ipsum</mark> dolor sit amet <strong>consectetur</strong> adipisicing elit. Aut <i>harum
molestias</i> labore amet
possimus <s>exercitationem aperiam</s> earum, doloribus <u>nobis ducimus</u> maiores quia voluptates quis omnis
molestiae quisquam. <a href="#">Voluptatibus, officiis laudantium?</a>
</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. <code>Hic culpa, nobis doloremque</code> veniam non,
nihil
cupiditate odit repellat est <kbd>ALT + F4</kbd> expedita facilis. Fuga aspernatur, alias debitis eveniet totam
minima vel.
</p>
<ul>
<li>List item</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
<ol>
<li>Step 1</li>
<li>Step 2</li>
<li>????</li>
<li>PROFIT!!!</li>
</ol>
<dl>
<dt>Web</dt>
<dd>The part of the Internet that contains websites and web pages</dd>
<dt>HTML</dt>
<dd>A markup language for creating web pages</dd>
<dt>CSS</dt>
<dd>A technology to make HTML look better</dd>
</dl>
<blockquote cite="https://en.wikiquote.org/wiki/Edward_Snowden">
If you think privacy is unimportant for you because you have nothing to hide, you might as well say free speech
is unimportant for you because you have nothing useful to say.<br><br>– Edward Snowden
</blockquote>
<pre>
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</body>
</html></pre>
<br>
<hr>
<br>
<table>
<caption>Ho-kago Tea Time</caption>
<thead>
<tr>
<th>Name</th>
<th>Instrument</th>
</tr>
</thead>
<tbody>
<tr>
<td>Yui Hirasawa</td>
<td>Lead Guitar</td>
</tr>
<tr>
<td>Mio Akiyama</td>
<td>Bass</td>
</tr>
<tr>
<td>Ritsu Tainaka</td>
<td>Drums</td>
</tr>
<tr>
<td>Tsumugi Kotobuki</td>
<td>Keyboard</td>
</tr>
<tr>
<td>Azusa Nakano</td>
<td>Rhythm Guitar</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Name</th>
<th>Instrument</th>
</tr>
</tfoot>
</table>
<br>
<hr>
<br>
<form>
<p><em>This is not a real form and does not submit or save any information.</em></p>
<p>
<label>First name</label><br>
<input type="text" name="first_name">
</p>
<p>
<label>Last name</label><br>
<input type="text" name="last_name">
</p>
<p>
<label>Gender</label><br>
<label>
<input type="radio" name="gender" value="Male">
Male
</label>
<br>
<label>
<input type="radio" name="gender" value="Female">
Female
</label>
<br>
<label>
<input type="radio" name="gender" value="other-none-na">
Non-binary
</label>
</p>
<p>
<label>Email</label><br>
<input type="email" name="email" required="">
</p>
<p>
<label>Phone number</label><br>
<input type="tel" name="phone">
</p>
<p>
<label>Password</label><br>
<input type="password" name="password">
</p>
<p>
<label>Country</label><br>
<select>
<option>China</option>
<option>India</option>
<option>United States</option>
<option>Indonesia</option>
<option>Brazil</option>
</select>
</p>
<p>
<label>Comments</label><br>
<textarea></textarea>
</p>
<p>
<label>
<input type="checkbox" value="terms">
I agree to the <a>terms and conditions</a>
</label>
</p>
<p>
<button>Sign up</button>
<button type="reset">Reset form</button>
<button disabled="disabled">Disabled</button>
</p>
</form>
<br>
<hr>
<br>
<img src="https://elements.xz.style/assets/fuji-daniel-hehn.jpg" alt="Mt. Fuji">
<script async defer src="https://api.newcss.net/latest.js"></script>
<noscript><img src="https://api.newcss.net/noscript.gif" alt=""></noscript>
</body>
</html>