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
120 lines (112 loc) · 5.32 KB
/
index.html
File metadata and controls
120 lines (112 loc) · 5.32 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!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>My Blog</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" />
</head>
<body>
<header class="header">
<h1>Welcome to my Blog</h1>
<p>A brief description of the blog</p>
<nav class="nav-bar">
<a class="nav-link" href="#">Home</a> |
<a class="nav-link" href="#">Other Services</a> |
<a class="nav-link" href="#">Contact</a>
</nav>
</header>
<main>
<section class="left-side">
<article class="article">
<h3>What is Lorem Ipsum?</h3>
<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.
</p>
<i>For more information about Lorem Ipsum<a href="https://www.lipsum.com/"
target="_blank"><strong> click here</strong></a></i>
</article>
<article class="article">
<h3>Why do we use it?</h3>
<p>
It is a long established fact that a reader will be distracted by the readable
content of a page when looking at its layout. The point of using Lorem Ipsum is
that it has a more-or-less normal distribution of letters, as opposed to using
'Content here, content here', making it look like readable English. Many desktop
publishing packages and web page editors now use Lorem Ipsum as their default model
text, and a search for 'lorem ipsum' will uncover many web sites still in their
infancy. Various versions have evolved over the years, sometimes by accident,
sometimes on purpose (injected humour and the like).
</p>
<i>For more information about Lorem Ipsum<a href="https://www.lipsum.com/"
target="_blank"><strong> click here</strong></a></i>
</article>
<article class="article">
<h3>Where can I get some?</h3>
<p>
There are many variations of passages of Lorem Ipsum available, but the majority
have suffered alteration in some form, by injected humour, or randomised words which
don't look even slightly believable. If you are going to use a passage of Lorem Ipsum,
you need to be sure there isn't anything embarrassing hidden in the middle of text.
All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as
necessary, making this the first true generator on the Internet. It uses a dictionary
of over 200 Latin words, combined with a handful of model sentence structures,
to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore
always free from repetition, injected humour, or non-characteristic words etc.
</p>
<i>For more information about Lorem Ipsum<a href="https://www.lipsum.com/"
target="_blank"><strong> click here</strong></a></i>
</article>
</section>
<section class="right-side">
<aside class="aside">
<h3>Scarabeo 7</h3>
<p>An Offshore 5TH Generation Semisubmersible Drilling Rig</p>
<img src="https://upload.wikimedia.org/wikipedia/commons/0/04/Eni_saipem_scarabeo_7.jpg"
alt="image of scarabeo 7 rig">
<p>Scarabeo 7 is an offshore semi-submersible drilling rig for oil production. It is fitted with
two heavy lift cranes that are capable of reaching all ends of the rig. It has good ship
stability and seakeeping, better than drillships.
<br>
<br>
<strong>Components of Scarabeo 7:</strong>
<ul>
<li>Motor or power source</li>
<li>Drill line</li>
<li>Derrick</li>
<li>Drill floor</li>
<li>Drill string</li>
<li>Drill bit</li>
<li>Casing head or Wellhead</li>
<li>Pipe deck</li>
<li>Mud tank</li>
</ul>
</p>
<p>For more information about Scarabeo 7 <a href="https://www.saipem.com/en/identity-and-vision/assets/scarabeo-7"
target="_blank"> <strong><i>click here</i></strong></a>
</p>
</aside>
</section>
</main>
<footer>
<p>Author: Chizim Chinuru<br>
<a href="http://chizim.co.uk/" target="_blank">chizim.co.uk</a></p>
</footer>
</body>
</html>