-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIndex3html.html
More file actions
40 lines (39 loc) · 1.11 KB
/
Index3html.html
File metadata and controls
40 lines (39 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>HTML Page</title>
</head>
<body>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
<header>
header {
font-size: x-large;
font-weight: bold;
text-align: center;
background: linear-gradient(#051118, #5C373C);
color: #CAA893;
border: thin #CAA893 inset;
margin: 20px 30px;
padding: 10px 20px;
}
Fake Industry Expo Announcement
</header>
<article>
article {
color: #5C373C;
margin: 10px;
}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</article>
<footer>footer {
font-size: x-small;
font-style: italic;
background-color: #C14860;
padding: 10px;
}
© Copyright Imaginary Organization 2016
</footer>
</body>
</html>