-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstep7.html
61 lines (61 loc) · 1.59 KB
/
step7.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
49
50
51
52
53
54
55
56
57
58
59
60
61
<!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;
}
.profile {
border: 1px solid #aeaeae;
width: 250px;
height: 250px;
margin-right: 10px;
padding: 5px;
}
.favourite {
width: 200px;
height: 200px;
border-radius: 50%;
border: 1px solid #aeaeae;
padding: 5px;
}
.logo {
display: block;
margin: 0 auto;
}
</style>
</head>
<body>
<img class="logo" src="images/logo.png">
<h1>Your name here</h1>
<p>Your tagline here</p>
<h2>About Me</h2>
<img class="profile" 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">Twitter</a>
<a href="https://facebook.com/tessthornton">Facebook</a>
<a href="https://linkedin.com/tessthornton">LinkedIn</a>
</body>
</html>