forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (63 loc) · 4.15 KB
/
index.html
File metadata and controls
68 lines (63 loc) · 4.15 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Hermosa</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<header>
<div>
<h1>HERMOSA</h1>
<p>We bring you the best of world most beautiful discoveries</p>
</div>
</header>
<body>
<div class="sideBar">
<h2>Andile's Blog</h2>
<img class="profilePic" src="profilepic.jpg" alt="profilePic">
<p>Hi, My name is Andile Masela and this is my blog where I share the worlds best discoveries.</p>
<form>
<p>Register for notifications.</p>
<input class="email" type="email" placeholder="[email protected]"><button type="submit">Register</button>
</form>
<footer>
<P>Follow us on:</P>
<a href="#" class="fa fa fa-facebook"></a>
<a href="#" class="fa fa fa-twitter"></a>
<a href="#" class="fa fa fa-instagram"></a>
<a href="#" class="fa fa fa-pinterest"></a>
</footer>
</div>
<main>
<table id="articles">
<tr>
<th><!--images--></th>
<th><!--article--></th>
</tr>
<tr>
<td><img class="articleImg" src="parallelUniverse.jpg" alt=" parallelUniverse"></td>
<td><article><p class="articleTopic">Parallel universe</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<a class="articleLInk" href="https://www.lipsum.com/" target="blank">read more</a></p></article></td>
</tr>
<tr>
<td><img class="articleImg" src="lifeOnAnotherPlanet.jpg" alt="lifeOnAnotherPlanet"></td>
<td><article></article><p class="articleTopic">Life on Mars</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<a class="articleLink" href="https://www.lipsum.com/" target="blank">read more</a></p></article></td>
</tr>
<tr>
<td><img class="articleImg" src="lifeOnSpace.jpg" alt="lifeOnSpace"></td>
<td><article></article><p class="articleTopic">Life in space</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<a class="articleLink" href="https://www.lipsum.com/" target="blank">read more</a></p></article></td>
</tr>
</table>
</main>
</body>
</html>