lightweight, simple, classless CSS framework inspired by new.css devcss.devins.page
framework lightweight css classless stylesheet
17
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 5047d8fdc561739379181fa58a4d4594622d526f 292 lines 6.3 kB view raw
1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 <title>Demo - dev.css</title> 7 <link rel="stylesheet" href="dev.css" /> 8 <link 9 rel="stylesheet" 10 href="https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist.min.css" 11 /> 12 <link 13 rel="stylesheet" 14 href="https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist-mono.min.css" 15 /> 16 </head> 17 18 <body> 19 <header> 20 <h4>dev.css</h4> 21 <h1>Demo</h1> 22 <p>This is the demo page for dev.css.</p> 23 <nav> 24 <ul> 25 <li><a href="demo">Demo</a></li> 26 <li><a href="https://github.com/intergrav/dev.css">Git</a></li> 27 <li> 28 <a href="https://www.npmjs.com/package/@intergrav/dev.css">npm</a> 29 </li> 30 <li> 31 <a href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css/" 32 >jsDelivr</a 33 > 34 </li> 35 </ul> 36 </nav> 37 </header> 38 39 <h1>Heading 1</h1> 40 <p> 41 This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing 42 elit. 43 </p> 44 <h2>Heading 2</h2> 45 <p> 46 This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing 47 elit. 48 </p> 49 <h3>Heading 3</h3> 50 <p> 51 This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing 52 elit. 53 </p> 54 <h4>Heading 4</h4> 55 <p> 56 This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing 57 elit. 58 </p> 59 <h5>Heading 5</h5> 60 <p> 61 This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing 62 elit. 63 </p> 64 <h6>Heading 6</h6> 65 <p> 66 This is paragraph text. Lorem ipsum dolor sit amet consectetur adipisicing 67 elit. 68 </p> 69 70 <br /> 71 <hr /> 72 <br /> 73 74 <blockquote> 75 This entire page was made with dev.css. You can view the source 76 <a href="https://github.com/intergrav/dev.css/blob/main/demo.html">here</a 77 >. 78 </blockquote> 79 80 <br /> 81 <hr /> 82 <br /> 83 84 <p> 85 Lorem <mark>ipsum</mark> dolor sit amet 86 <strong>consectetur</strong> adipisicing elit. Aut 87 <i>harum molestias</i> labore amet possimus 88 <s>exercitationem aperiam</s> earum, doloribus 89 <u>nobis ducimus</u> maiores quia voluptates quis omnis molestiae 90 quisquam. <a href="#">Voluptatibus, officiis laudantium?</a> 91 </p> 92 93 <p> 94 Lorem ipsum dolor sit amet consectetur adipisicing elit. 95 <code>Hic culpa, nobis doloremque</code> veniam non, nihil cupiditate odit 96 repellat est <kbd>ALT + F4</kbd> expedita facilis. Fuga aspernatur, alias 97 debitis eveniet totam minima vel. 98 </p> 99 100 <ul> 101 <li>List item</li> 102 <li>List item</li> 103 <li>List item</li> 104 <li>List item</li> 105 </ul> 106 107 <ol> 108 <li>Step 1</li> 109 <li>Step 2</li> 110 <li>????</li> 111 <li>Profit!</li> 112 </ol> 113 114 <dl> 115 <dt>Web</dt> 116 <dd>The part of the Internet that contains websites and web pages</dd> 117 <dt>HTML</dt> 118 <dd>A markup language for creating web pages</dd> 119 <dt>CSS</dt> 120 <dd>A technology to make HTML look better</dd> 121 </dl> 122 123 <blockquote cite="https://en.wikiquote.org/wiki/Edward_Snowden"> 124 If you think privacy is unimportant for you because you have nothing to 125 hide, you might as well say free speech is unimportant for you because you 126 have nothing useful to say. 127 <br /> 128 <br /> 129 – Edward Snowden 130 </blockquote> 131 132 <pre><code>&#x3C;!DOCTYPE html&#x3E; 133 &#x3C;html&#x3E; 134 &#x3C;head&#x3E; 135 &#x3C;title&#x3E;Hello World&#x3C;/title&#x3E; 136 &#x3C;/head&#x3E; 137 &#x3C;body&#x3E; 138 &#x3C;p&#x3E;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&#x3C;/p&#x3E; 139 &#x3C;/body&#x3E; 140&#x3C;/html&#x3E;</code></pre> 141 142 <br /> 143 <hr /> 144 <br /> 145 146 <details> 147 <summary>Click me!</summary> 148 <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> 149 </details> 150 151 <br /> 152 <hr /> 153 <br /> 154 155 <table> 156 <caption> 157 Ho-kago Tea Time 158 </caption> 159 <thead> 160 <tr> 161 <th>Name</th> 162 <th>Instrument</th> 163 </tr> 164 </thead> 165 <tbody> 166 <tr> 167 <td>Yui Hirasawa</td> 168 <td>Lead Guitar</td> 169 </tr> 170 <tr> 171 <td>Mio Akiyama</td> 172 <td>Bass</td> 173 </tr> 174 <tr> 175 <td>Ritsu Tainaka</td> 176 <td>Drums</td> 177 </tr> 178 <tr> 179 <td>Tsumugi Kotobuki</td> 180 <td>Keyboard</td> 181 </tr> 182 <tr> 183 <td>Azusa Nakano</td> 184 <td>Rhythm Guitar</td> 185 </tr> 186 </tbody> 187 <tfoot> 188 <tr> 189 <th>Name</th> 190 <th>Instrument</th> 191 </tr> 192 </tfoot> 193 </table> 194 195 <br /> 196 <hr /> 197 <br /> 198 199 <form> 200 <p> 201 <em> 202 This is not a real form and does not submit or save any information. 203 </em> 204 </p> 205 <p> 206 <label>First name</label><br /> 207 <input type="text" name="first_name" /> 208 </p> 209 <p> 210 <label>Last name</label><br /> 211 <input type="text" name="last_name" /> 212 </p> 213 <p> 214 <label>Gender</label><br /> 215 <label> 216 <input type="radio" name="gender" value="Male" /> 217 Male 218 </label> 219 <br /> 220 <label> 221 <input type="radio" name="gender" value="Female" /> 222 Female 223 </label> 224 <br /> 225 <label> 226 <input type="radio" name="gender" value="other-none-na" /> 227 Non-binary 228 </label> 229 </p> 230 <p> 231 <label>Email</label><br /> 232 <input type="email" name="email" required="" /> 233 </p> 234 <p> 235 <label>Phone number</label><br /> 236 <input type="tel" name="phone" /> 237 </p> 238 <p> 239 <label>Password</label><br /> 240 <input type="password" name="password" /> 241 </p> 242 <p> 243 <label>Country</label><br /> 244 <select> 245 <option>China</option> 246 <option>India</option> 247 <option>United States</option> 248 <option>Indonesia</option> 249 <option>Brazil</option> 250 </select> 251 </p> 252 <p> 253 <label>Comments</label><br /> 254 <textarea></textarea> 255 </p> 256 <p> 257 <label> 258 <input type="checkbox" value="terms" /> 259 I agree to the <a>terms and conditions</a> 260 </label> 261 </p> 262 <p> 263 <button>Sign up</button> 264 <button type="reset">Reset form</button> 265 <button disabled="disabled">Disabled</button> 266 </p> 267 </form> 268 269 <br /> 270 <hr /> 271 <br /> 272 273 <img 274 src="https://elements.xz.style/assets/fuji-daniel-hehn.jpg" 275 alt="Mt. Fuji" 276 /> 277 278 <p> 279 Inline image: 280 <a href="#" 281 ><img 282 src="https://elements.xz.style/assets/fuji-daniel-hehn.jpg" 283 width="50" 284 alt="Mt. Fuji" 285 /></a> 286 </p> 287 288 <footer> 289 <p>This is an optional footer.</p> 290 </footer> 291 </body> 292</html>