-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.07 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./style.css">
<title>Iron Style</title>
</head>
<body>
<div id="heading">
<h1>The Iron Style Generator</h1>
<img src="./watson.jpg">
<div id="navigation">
<ul>
<li><a href="background.html">Background Color</a></li>
<li><a href="color.html">Text Color</a></li>
<li><a href="width.html">Page Width</a></li>
<li><a href="line.html">Line Height</a></li>
<li><a href="size.html">Font Size</a></li>
<li><a href="radius.html">Border Radius</a></li>
<li><a href="shadow.html">Box Shadow</a></li>
</ul>
</div>
</div>
<div id="wrapper">
<div id="content">
<h2>Welcome to The Iron Style Generator</h2>
<p>This app will generate a stylesheet for you based on your input. Enjoy!</p>
</div>
<div id="sidebar">
<h3>Aside goes here</h3>
</div>
</div>
<div id="footer">Footer</div>
<script src="./app.js"></script>
</body>
</html>