Skip to content

Commit 9935cf4

Browse files
committed
Quick and dirty example
1 parent 74d04a5 commit 9935cf4

File tree

2 files changed

+84
-0
lines changed

2 files changed

+84
-0
lines changed

7 - Project/example.css

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
html {
2+
height: 100%;
3+
}
4+
body {
5+
font-family: Arial;
6+
height: 100%;
7+
margin: 0px;
8+
}
9+
a {
10+
color: red;
11+
}
12+
img {
13+
float: right;
14+
width: 200px;
15+
}
16+
p span
17+
{
18+
font-weight: bold;
19+
}
20+
.header {
21+
background-color: #99B5DD;
22+
position: fixed;
23+
top: 0px;
24+
width: 100%;
25+
height: 60px;
26+
padding: 0px 10px;
27+
font-size: 50px;
28+
z-index: 10;
29+
}
30+
.content {
31+
height: 200px;
32+
position: absolute;
33+
top: 60px;
34+
padding: 10px;
35+
z-index: 0;
36+
}
37+
.footer {
38+
background-color: #0F215D;
39+
position: fixed;
40+
bottom: 0px;
41+
height: 60px;
42+
width: 100%;
43+
z-index: 10;
44+
}

7 - Project/example.html

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<title> Susan's Website </title>
5+
<link rel="stylesheet" type="text/css" href="example.css">
6+
</head>
7+
<body>
8+
<div class="header">
9+
Susan Baugh
10+
</div>
11+
<div class="content">
12+
<h1>Welcome!</h1>
13+
<p>
14+
Thanks for stopping by! My name is Susan and I love art, learning about energy and renewable resources, and playing Candy Crush. <br>
15+
Please have a look around and check out my projects and work! <br>
16+
</p>
17+
<img src="http://i.imgur.com/cMoWwd6.jpg" alt="I'm Susan"/>
18+
19+
<h1>Publications</h1>
20+
21+
<h2>Presentations</h2>
22+
23+
Construction of the Belo Monte Hydroelectric Power Plant in the Amazon <br>
24+
25+
Microfluidic Devices for Medical and Energy Applications <br>
26+
27+
<h2>Publications</h2>
28+
29+
Paper-based Microfluidics for Energy Applications <br>
30+
31+
How to Destroy Candy Crush in 5 Easy Steps <br>
32+
33+
<h1>Contact Me</h1>
34+
35+
<p><span>Email</span> susan@example.com</p>
36+
37+
</div>
38+
<div class="footer"></div>
39+
</body>
40+
</html>

0 commit comments

Comments
 (0)