-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstep4.html
44 lines (43 loc) · 1.29 KB
/
step4.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
<!doctype html>
<html>
<head>
<title>Ladies Learning Code HTML and CSS</title>
<style>
body {
font-family: Helvetica, Arial, sans-serif;
color: #333333;
}
h1 {
font-size: 48px;
}
h2 {
font-size: 32px;
}
h3 {
color: #A8258D;
}
p {
line-height: 1.4;
font-size: 15px;
}
</style>
</head>
<body>
<img src="images/logo.png">
<h1>Your name here</h1>
<p>Your tagline here</p>
<h2>About Me</h2>
<img src="images/profile.jpg">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Consequuntur libero voluptate eligendi quae impedit quos quia esse error mollitia velit. Necessitatibus distinctio a quis expedita ipsam ad facere natus nemo.</p>
<h2>My Favourite Things</h2>
<h3>Here are a few things I really love</h3>
<img class="favourite" src="images/kitten.jpg">
<img class="favourite" src="images/kitten.jpg">
<img class="favourite" src="images/kitten.jpg">
<img class="favourite" src="images/kitten.jpg">
<h2>Contact Me</h2>
<a href="https://twitter.com/tessthornton"><img src="images/twitter.png"></a>
<a href="https://facebook.com/tessthornton"><img src="images/facebook.png"></a>
<a href="https://linkedin.com/tessthornton"><img src="images/linkedin.png"></a>
</body>
</html>