-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathessay.html
58 lines (54 loc) · 1.42 KB
/
essay.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE HTML>
<html>
<head>
<title>An Essay</title>
<style>
body {
font-family: "Times New Roman";
font-size: 12pt;
margin-left: auto;
margin-right: auto;
padding: 30px;
}
#head {
text-align: left;
display: block;
}
#number {
text-align: right;
float: right;
display: block;
}
#title {
text-align: center;
}
#essay p {
text-indent: 45px;
line-height: 2em;
margin: 0px;
}
span {
text-align: center;
font-size: 7pt;
font-family: sans-serif;
color: #666;
}
</style>
</head>
<body>
<div id="number">
LASTNAME
</div>
<div id="head">
<p>FIRSTNAME LASTNAME</p>
<p>AP Language and Composition</p>
<p>Decker</p>
<p>THE DATE</p>
</div>
<div id="title"><p>YOUR TITLE</p></div>
<div id="essay">
<p>This is a sample essay. It is very pretty. Your essay is probably prettier. Yes, pretty essay, put it here. Copy and paste it into this space. This space would love your essay. Omnomnomnomnom. Make sure to leave a space between the period and that over theeeeeere. </p>
<p>This is a second paragraph. A second pretty paragraph. Sample, sample, sample. Lorem ipsum lalalala. If you have any ' in your paragraph, be sure to replace them accoringly. Quotes and greaterthan/lessthan signs might also need to be escaped. Rember to leave that space again. At least one. Two probably won't be dangerous. I don't think so, anyway. </p>
</div>
</body>
</html>