-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
79 lines (76 loc) · 2.97 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
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lego</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="./css/style.css">
<link rel="shortcut icon" href="./images/logo.svg" type="image/x-icon">
</head>
<body>
<header>
<div class="logo">
<img width="50" src="./images/logo.svg" alt="">
</div>
<nav>
<ul>
<li>Themes</li>
<li>Shop By</li>
<li>Interest</li>
<li>Sale</li>
<li class="fa fa-shopping-bag"></li>
</ul>
</nav>
</header>
<section class="mid">
<div class="midText">
<h1>TECHNIC</h1>
</div>
<div class="lambo">
<img src="./images/car.png" alt="">
</div>
</section>
<section class="bottom">
<div class="leftSide">
<div class="first">
<div class="firstText">
<h2>TECHNIC</h2>
<div class="firstCircles">
<div class="singleCircle">
<p>18+</p>
</div>
<div class="singleCircle">
<p>3696</p>
<p>Pieces</p>
</div>
<div class="singleCircle">
<p>2470</p>
<p>VIP Points</p>
</div>
</div>
</div>
</div>
<div class="secondText">
<p>Lamborghini Sian FKP 37</p>
<span>Designed by <a target="_blank" href="https://www.behance.net/aea9">Alisa Alyabyeva</a></span>
<span>Developed by <a target="_blank" href="https://github.com/AimanAlmureish/">Aiman Almureish</a> at <a target="_blank" href="https://www.nohashways.com/">Nohashways</a></span>
</div>
<div class="shopButton">
<a target="_blank" href="https://www.behance.net/aea9">Shop Now</a>
</div>
<div class="social">
<a target="_blank" href="https://www.facebook.com/nohashways"><i class="fa fa-facebook"></i></a>
<a target="_blank" href="https://github.com/AimanAlmureish/lego-hero"><i class="fa fa-github"></i></a>
<a target="_blank" href="https://www.behance.net/aea9"><i class="fa fa-behance"></i></a>
<a target="_blank" href="https://www.nohashways.com/"><i class="fa fa-globe"></i></a>
</div>
</div>
<div class="rightSide">
<img src="./images/carFooter.png" alt="">
</div>
</section>
<script src="./js/script.js"></script>
</body>
</html>