-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLiquidLayout.html
More file actions
43 lines (40 loc) · 1.11 KB
/
LiquidLayout.html
File metadata and controls
43 lines (40 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Box Showcase!</title>
<link rel="stylesheet" href="LiquidLayout.css">
</head>
<body>
<div id="header" class="evenly-spaced">
<h1> Web-Dev Fundamentals </h1>
</div>
<div id="left-page" class="evenly-spaced">
<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" class="evenly-spaced">
<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" class="evenly-spaced">
<h3>thank you for your interest :)</h3>
<p>
Note: This page is built off a fixed 1200px page-width.
Click <a href="Layout.html"> here </a> to view the <i>fixed</i> version
</p>
</div>
</body>
</html>