-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path09_ids_class.html
48 lines (47 loc) · 1.26 KB
/
09_ids_class.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Div, span, id and class</title>
<style>
.card {
border: 1px solid #ccc;
background: #f4f4f4;
padding: 20px;
margin-bottom: 10px;
}
.enhance {
color: yellow;
background-color:black;
}
</style>
</head>
<body>
<div id="main-header" class="card">
<h1>My Wesbite</h1>
<p>A site about me</p>
</div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
<div id="about" class="card">
<h3>About</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. <span class="enhance">Aperiam corporis magnam molestiae.</span> Fugit molestiae, placeat, voluptas esse laudantium adipisci quis perspiciatis aspernatur labore ut harum temporibus officia! Ex, porro vel!</p>
</div>
<div id="contact" class="card">
<h3>Contact Me</h3>
<ul>
<li>Address: 50 Main st, Boston MA</li>
<li>Phone: (555) 555-5555</li>
<li>Email: [email protected]</li>
</ul>
</div>
<div id="footer">
<p>Copyright © 2019</p>
</div>
</body>
</html>