-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 833 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 833 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
<!DOCTYPE html>
<html>
<head>
<style>
h1{
text-align: center;
text-transform: uppercase;
font-family: Arial, Helvetica, sans-serif;
font-size: 50px;
border: 7px solid black;
padding: 50px 50px 50px 50px;
background-color: #ddd;
overflow-wrap: break-word;
}
p{
padding: 25px 25px 25px 25px;
font-family: Arial, Helvetica, sans-serif;
font-size: 30px;
color: white;
border: 5px solid black;
background-color: red;
overflow-wrap: break-word;
}
</style>
</head>
<body>
<h1>This is my amazing new webpage!</h1>
<p>Isn't it flippin' sweet?!! Now I'm just going to write a bunch of crap and see if it will fit in the box that I make. Do not attempt to do this at home. These experiments in crappy web design are likely to cause injuries.</p>
</body>
</html>