-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpoohTem.html
More file actions
55 lines (43 loc) · 928 Bytes
/
poohTem.html
File metadata and controls
55 lines (43 loc) · 928 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE HTML>
<html>
<head>
<title>Project Proposals: $NAME </title>
<meta charset="UTF-8">
<style type="text/css">
body {
margin-left: 100px;
margin-right: 100px;
padding: 20px;
font-family: cursive;
border-left: 5px solid black;
border-right: 5px solid black;
background: #FCFCF0;
}
h1 {
text-align: center;
}
.projects {
border: 1px solid black;
padding: 5px;
margin: 5px;
background: #F0FCFC;
}
</style>
</head>
<body>
<h1>Individual Project Proposal</h1>
<h2>$NAME</h2>
<ul>
<li> <a href="$WWW">Homepage</a> </li>
<li> <a href="$EMAIL">Email</a></li>
</ul>
<h3>Description</h3>
<p>$BLURB</p>
<h3>Project: $PROJECT</h3>
<div class="projects">
<ol>
$DESC.
</ol>
</div>
</body>
</html>