-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 912 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Fundamental CSS comprehension</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<section class="card">
<header>
<h2>Chris Mills</h2>
</header>
<article>
<img
src="chris.jpg"
alt="A picture of Chris - a man with glasses, a beard, and a silly wooly hat"
class="card-img"
/>
<p>
50 My Street<br />
The Town<br />
Gray Peach<br />
UK<br />
ZO50 1MU<br />
<strong>Tel</strong>: 01234 567 890<br />
<strong>Mail</strong>: [email protected]
</p>
</article>
<footer>
<p>Editing, writing, and web development services</p>
</footer>
</section>
</body>
</html>