-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLayout.html
More file actions
48 lines (44 loc) · 1.09 KB
/
Layout.html
File metadata and controls
48 lines (44 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Box Showcase!</title>
<link rel="stylesheet" href="Layout.css">
</head>
<body>
<div id="header">
<h2> web-dev fundamentals </h2>
<ul>
<li>
This page is built off a fixed 1000px page-width.
</li>
<li>
<a href="LiquidLayout.html"> Click Here: to view the <i>responsive</i> version </a>
</li>
</ul>
</div>
<div id="left-page">
<div id="main-title">
<h1> Seo Productions </h1>
<p> Hi! You have landed on my page! <br>
To the left, you can find a collection of projects
and programs I've built.
</p>
</div>
</div>
<div id="right-page">
<div id="project-info">
<h2>Projects!</h2>
<p> please feel free to check out! Compiled onto the
web via webassembly.</p>
</div>
<h2> Sand_Demo </h2>
<p>
At the time of writing this... This is a coming soon feature!
</p>
</div>
<div id="footer">
<h3>thank you for your interest :)</h3>
</div>
</body>
</html>