-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path93.html
30 lines (29 loc) · 1.15 KB
/
93.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Images</title>
<style>
h3 {
font-size: 35px;
}
div {
padding: 1em;
background-image: url("fleur-de-lis.png");
background-repeat: repeat-y;
background-position: center top;
background-color: #dfdfdf;
background: #dfdfdf url("fleur-de-lis.png") repeat-y center top;
}
</style>
</head>
<body>
<h1>Images</h1>
<h2>By Jennifer Kyrnin</h2>
<div>
<h3>Shasta!</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec venenatis iaculis quam eget commodo. Integer faucibus, mauris vitae iaculis malesuada, augue augue interdum nisl, sed ornare nisl massa blandit urna. Sed semper venenatis egestas. Aenean id arcu arcu. Curabitur gravida massa in nibh tristique vehicula. In pellentesque finibus molestie. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer gravida ultricies eros, id molestie eros vestibulum vel. Morbi lectus odio, luctus ac tortor eu, ultricies dapibus velit.</p>
</div>
</body>
</html>