-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (26 loc) · 898 Bytes
/
index.html
File metadata and controls
34 lines (26 loc) · 898 Bytes
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>CSS Layout Examples</title>
<link href = "Stylesheet.css" type = "text/css" rel = "stylesheet">
</head>
<header>
<p>Joshua Maroney</p>
<p>Creating Websites</p>
<p>February 5, 2015</p>
</header>
<body>
This site demonstrates various CSS layout examples and how they can be used to style any websites
just how you'd like it.
<p><a href="positioning.html">CSS Positioning Examples</a></p>
<p><a href="blockElement.html">Block Elements</a></p>
<p><a href="inline.html">Inline Elements</a></p>
<p><a href="inlineBlockElements.html">Inline Block Elements</a></p>
<p><a href="boxSizing.html">Box Sizing</a></p>
<p><a href="maxWidth.html">Max Width</a> </p>
<p><a href="marginAuto.html">Margin-Auto</a></p>
<p><a href="floats.html">Floats</a></p>
<p><a href="columns.html">Columns</a></p>
</body>
</html>