forked from macloo/html_css_templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (30 loc) · 1.21 KB
/
index.html
File metadata and controls
51 lines (30 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Basic HTML and CSS Templates</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/base.css">
</head>
<body>
<div id="wrapper">
<h1>Index</h1>
<p>Jennifer Jones forked this repo on March 31.</p>
<p><a href="https://github.com/macloo/html_css_templates">GitHub repo</a> (all files)</p>
<p>Extremely simple templates for starting a small project.</p>
<h2>box-sizing</h2>
<p><a href="boxsizing.html">CSS box-sizing example</a></p>
<p><a href="noboxsizing.html">CSS box model example without box-sizing</a></p>
<h2>floats</h2>
<p><a href="floats.html">CSS floats example version 1 (solid colors)</a></p>
<p><a href="floats_variant.html">CSS floats example version 2 (borders)</a></p>
<h2>inline-block</h2>
<p><a href="inline-block.html">CSS inline-block instead of floats</a></p>
<h2>viewport</h2>
<p>Note: Examples above are not responsive because they do not include
the viewport meta tag. Examples below do include that tag and are
(to some extent) responsive on small screens, i.e. mobile.</p>
<p><a href="viewport.html">Viewport with CSS floats example</a></p>
</div>
</body>
</html>