forked from cvburgess/usfcph-week2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexercise-2.html
More file actions
35 lines (35 loc) · 747 Bytes
/
exercise-2.html
File metadata and controls
35 lines (35 loc) · 747 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Exercise 2</title>
<style>
body {
background-color: #363537;
}
.title {
text-align: center;
margin-bottom: 32px;
font-size: 64pt;
color: #ff9c29;
}
.title:hover {
font-family: Helvetica, Arial, sans-serif;
color: #00c7b6;
}
p {
text-align: center;
color: white;
}
</style>
</head>
<body>
<div class="container">
<h1 class="title">
Hello World
</h1>
<p>My first website with <strong>HTML and CSS</strong>!</p>
</div>
</body>
</html>