-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (60 loc) · 3.22 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DOM - Most Expensive Alfa Romeo Cars</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="wrapper">
<header class="header">
<h1 class="h1"><a href="index.html">
Most Expensive Alfa Romeo cars
</a>
</h1>
</header>
<main class="main">
<nav class="menu">
<ul class="menu__items">
<li class="menu__item" id=0><a class="menu__item-link" href="#" set active>Alfa Romeo
8C 2900 Lungo Spider Touring</a></li>
<li class="menu__item" id=1><a class="menu__item-link" href="#">Alfa Romeo
8C 2900 Berlinetta Touring</a></li>
<li class="menu__item" id=2><a class="menu__item-link" href="#">Alfa Romeo
8C 2300 Monza Brianza</a></li>
</ul>
</nav>
<section class="section">
<img class="article__img" src="./img/alfa_logo.png" alt="Alfa Romeo">
<h2 class="article__title" id="article__title">Since 1910</h2>
<p class="article__price">Meccanica delle Emozioni!</p>
<article class="article__text" id="article__text">
<p>
Alfa Romeo Automobiles S.p.A. is an Italian luxury car manufacturer
and a subsidiary of Stellantis. The company was founded on 24 June 1910, in Milan, Italy. "Alfa"
is an acronym of its founding name, "Anonima Lombarda Fabbrica Automobili." "Anonima" means
"anonymous", which was a legal form of company at the time, as it was founded by anonymous
investors. In the initial set-up phase, in order to have a building to produce cars, the company
bought the Portello factory building of Darracq in Milan, which was closing up and selling all
its assets. The brand is known for sport-oriented vehicles and has been involved in car racing
since 1911. Alfa Romeo
was owned by Fiat Chrysler Automobiles, the company that was responsible for the production of
Alfa Romeo cars until its operations were fully merged with those of the PSA Group to form
Stellantis on 16 January 2021.
</p>
<p>
Ukraine Alfa Romeo Fan Club -
<a href="https://alfaromeo.org.ua" target="_blank">alfaromeo.org.ua</a>
</p>
</article>
</section>
</main>
<footer class="footer">© 2022 Most Expensive Alfa Romeo cars by
<a class="footer__link" href="https://github.com/rahmanoff">rahmanoff</a>
</footer>
</div>
</body>
<script src="./main.js"></script>
</html>