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
119 lines (78 loc) · 5.4 KB
/
index.html
File metadata and controls
119 lines (78 loc) · 5.4 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
<!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 class="title">
Scientific Achievements of the century
</title>
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<header class="header">
<div>
<nav class="navbar">
<a href="#">Electric Cars</a>
<a href="#">Who Makes them</a>
<a href="#">Address</a>
</nav>
</div>
<h1 class="title">
Challenges of the Electric car
</h1>
</header>
<div class="images">
<img class="image" src="images/image5.jpg" alt="Image of a river" width="500" height="300">
<iframe class="iframe" width="500" height="300" src="https://www.youtube.com/embed/CkoquiSnqbk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<h2>The future is behind us</h2>
<article class="article">
<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> </article>
<article class="article">
<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>
</article>
<img class="image" src="images/image1.jpg" alt="Random landscape image" width="500" height="300">
<img class="image" src="images/image2.jpg" alt="Random image" width="500" height="300">
<img class="image" src="images/image3.jpg" alt="Random image of river" width="500" height="300">
<br>
<br>
<aside class="aside">
<h3 class="heads"> People resist change:</h3>
<div class="values">
<nav aria-label="Main Site Links.">
<ul>
<li> <a href="#">The future</a> </li>
<li> <a href="#">Anti corruption</a> </li>
<li> <a href="#">Hardwork</a> </li>
<li> <a href="#">Self reliance</a> </li>
<li> <a href="#">Equity</a> </li>
<li> <a href="#">Fair trade</a> </li>
</ul>
</nav>
</div>
</aside>
<section class="section">
<h2 class="heads">Who took the cookies?</h2>
<p>
Issues for Climate Change 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>
<p>
At the time of its independence, Zambia's modernisation process was far from complete. The nation's educational system was one of the most poorly developed in all of Britain's former colonies, and it had just a hundred university graduates and no more than 6,000 indigenous inhabitants with two years or more of secondary education.[18][19] Because of this, Zambia had to invest heavily in education at all levels.[20] Kaunda instituted a policy where all children, irrespective of their parents' ability to pay, were given free exercise books, pens, and pencils. The parents' main responsibility was to buy uniforms, pay a token "school fee" and ensure that the children attended school. This approach meant that the best pupils were promoted to achieve their best results, all the way from primary school to university level. Not every child could go to secondary school, for example, but those who did were well educated.[21]
</p>
</article>
</section>
</div>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
</body>
<footer class="footer">
<h3>The Moon will always shine</h3>
<p class="pfooter">Copyright. All rights reserved.</p>
</footer>
</html>
</main>
</html>