forked from Codi-B07/HTML-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHtml1.html
More file actions
90 lines (79 loc) · 2.66 KB
/
Html1.html
File metadata and controls
90 lines (79 loc) · 2.66 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
<!DOCTYPE html>
<html>
<head>
<style>
* {box-sizing: border-box;}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.header {
overflow: hidden;
background-color: #f1f1f1;
padding: 20px 10px;
}
.header a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
.header a.logo {
font-size: 25px;
font-weight: bold;
}
.header a:hover {
background-color: #ddd;
color: black;
}
.header a.active {
background-color: dodgerblue;
color: white;
}
.header-right {
float: right;
}
footer {
text-align: center;
padding: 3px;
background-color: DarkSalmon;
color: white;
}
.header-right {
float: none;
}
</style>
</head>
<body>
<div class="header">
<a href="#default" class="logo">focus2move.com</a>
<div class="header-right">
<a class="active" href="#home">Home</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
</div>
</div>
<p>Icelandic vehicles market in 2020 falls by 44.5% as the pandemic and lockdowns affect sales. Full-Year sales have been 9.184. Toyota remains the leader, followed by Tesla and Kia, while Nissan falls 63.3%.</p>
<h1>Economic Environment</h1>
<h2>Market Trend</h2>
<h3>Tables with sales figures</h3>
<blockquote >
In the tables below we report sales for all Brands, top 10 Manufacturers Group and top 10 Models.
</blockquote>
</br>
</br>
</br>
<p><b>Iceland 2017. Cars sales up 10%</b></p>
<p><i>Iceland 2016. Sales at the best in 7 years.</i></p>
<p><strong>THow to purchase Data & Services!</strong></p>
<img src="https://www.focus2move.com/wp-content/uploads/2020/01/Tesla-Roadster-2020-1024-03-696x522.jpg.webp" alt="red car" width="300" height="300">
<footer>
<p>© MotorCycles Data 2020 - P.IVA 10935821008 - Ancoca s.r.l. Via Solone 18/b 00124 Roma (RM) Powered by MonkeyData<br>
<a href="mailto:bob@example.com">bob@example.com</a></p>
</footer>
</body>
</html>