-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (42 loc) · 1.52 KB
/
Copy pathindex.html
File metadata and controls
48 lines (42 loc) · 1.52 KB
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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>My Achievements</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="profile" >
<div class="profile-photo" >
<img src="http://www.n-europe.com/slir/w295/images/stories/additionalFields/content-4-35134-rabbids.jpg" alt="profile photo">
</div>
<h2> Brian Muganda</h2>
<h3 class="rank">Rank: <em>Junior SPOC</em></h3>
<p>
In this first term of SPOC, you have learnt alot of HTML/CSS basics and can make a great deal of websites from it. Listed below are some of those skills.
</p>
</div>
<div class="achievements">
<div class="html">
<h3>HTML</h3>
<ul>
<li>Using texts of different sizes with tags like h1</li>
<li>use strong tags</li>
<li>insert image </li>
<li>create links</li>
<li> create sections</li>
</ul>
</div>
<div class="css">
<h3>CSS</h3>
<ul>
<li>Changing the color of text</li>
<li>use float</li>
<li>use flex </li>
<li>add background colours</li>
</ul>
</div>
</div>
</body>
</html>