-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (133 loc) · 6.48 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/base/variable.css">
<link rel="stylesheet" href="./css/base/reset.css">
<link rel="stylesheet" href="./css/base/base.css">
<link rel="stylesheet" href="./css/header/header.css">
<link rel="stylesheet" href="./css/header/nav.css">
<link rel="stylesheet" href="./css/header/nav-menu.css">
<link rel="stylesheet" href="./css/header/nav-item.css">
<link rel="stylesheet" href="./css/header/nav-link.css">
<link rel="stylesheet" href="./css/header/menu-responsive.css">
<link rel="stylesheet" href="./css/header/nav-image.css">
<link rel="stylesheet" href="./css/header/nav-close.css">
<link rel="stylesheet" href="./css/header/back-menu.css">
<link rel="stylesheet" href="./css/header/btn-menu.css">
<link rel="stylesheet" href="./css/top/top.css">
<link rel="stylesheet" href="./css/top/top-left.css">
<link rel="stylesheet" href="./css/top/left-text.css">
<link rel="stylesheet" href="./css/top/left-text-title.css">
<link rel="stylesheet" href="./css/top/left-text-text.css">
<link rel="stylesheet" href="./css/top/left-text-paragraph.css">
<link rel="stylesheet" href="./css/top/left-text-button.css">
<link rel="stylesheet" href="./css/top/top-right.css">
<link rel="stylesheet" href="./css/top/right-text-title.css">
<link rel="stylesheet" href="./css/top/box-title.css">
<link rel="stylesheet" href="./css/top/box-paragraph.css">
<link rel="stylesheet" href="./css/top/riht-text-box.css">
<link rel="stylesheet" href="./css/top/image-left.css">
<link rel="stylesheet" href="./css/bottom/bottom.css">
<link rel="stylesheet" href="./css/bottom/bottom-list.css">
<link rel="stylesheet" href="./css/bottom/list-box.css">
<link rel="stylesheet" href="./css/bottom/list-image.css">
<link rel="stylesheet" href="./css/bottom/list-text.css">
<link rel="stylesheet" href="./css/bottom/list-title.css">
<link rel="stylesheet" href="./css/bottom/list-subtitle.css">
<link rel="stylesheet" href="./css/bottom/list-para.css">
<link rel="stylesheet" href="./css/footer/footer.css">
<title>Frontend Mentor | News homepage</title>
</head>
<body>
<header class="header">
<img class="nav__image" src="./assets/images/logo.svg" alt="Logo">
<button id="btn_menu"><img src="./assets/images/icon-menu.svg" alt=""></button>
<div id="back_menu">
</div>
<nav id="nav" class="nav">
<ul class="nav__menu">
<li class="nav__close"><img id="menu-close" src="./assets/images/icon-menu-close.svg" alt="Close Menu"></li>
<li class="nav__item"><a class="nav__link" href="#home">Home</a></li>
<li class="nav__item"><a class="nav__link" href="#new">New</a></li>
<li class="nav__item"><a class="nav__link" href="#popular">Popular</a></li>
<li class="nav__item"><a class="nav__link" href="#">Trending</a></li>
<li class="nav__item"><a class="nav__link" href="#">Categories</a></li>
</ul>
</nav>
</header>
<main class="main">
<div class="top">
<div class="top__left" id="home">
<img class="image__left" src="./assets/images/image-web-3-desktop.jpg" alt="Image web">
<div class="left-text">
<h2 class="left-text__title">The Bright Future of Web 3.0?</h2>
<div class="left-text__text">
<p class="left-text__paragraph">We dive into the next evolution of web that claims to put the power of the plataforms back into the hands of the people. But is it really fulfilling its promise?
</p>
<button class="left-text__button">READ MORE</button>
</div>
</div>
</div>
<div class="top__right">
<h2 class="right-text__title" id="new">New</h2>
<div class="right-text__box">
<h3 class="box__title">Hydrogen VS Electric Cars</h3>
<p class="box__paragraph">Will hydrogen fueled cars ever catch up to EVs?</p>
</div>
<div class="line__top right-text__box">
<h3 class="box__title">The Downsides of AI Artistry</h3>
<p class="box__paragraph">What are the possible adverse effects of on-demmand AI image generation?</p>
</div>
<div class="line__top right-text__box">
<h3 class="box__title">Is VC Funding Drying Up?</h3>
<p class="box__paragraph">Private funding by VC firms is down 50% YOY. We take a look at what that means.</p>
</div>
</div>
</div>
<!-- BOTTOM-->
<div class="bottom" id="popular">
<ul class="bottom__list">
<li class="list__item">
<div class="list__box">
<img class="list__image" src="./assets/images/image-retro-pcs.jpg" alt="">
<div class="list__text">
<h4 class="list__title">01</h4>
<h5 class="list__subtitle">Reviving Retro PCs</h5>
<p class="list__para">What happens when old PCs are given modern upgrades?</p>
</div>
</div>
</li>
<li class="list__item">
<div class="list__box">
<img class="list__image" src="./assets/images/image-top-laptops.jpg" alt="">
<div class="list__text">
<h4 class="list__title">02</h4>
<h5 class="list__subtitle">Top 10 Laptos of 2022</h5>
<p class="list__para">Our best picks for various needs and budgets.</p>
</div>
</div>
</li>
<li class="list__item">
<div class="list__box">
<img class="list__image" src="./assets/images/image-gaming-growth.jpg" alt="">
<div class="list__text">
<h4 class="list__title">03</h4>
<h5 class="list__subtitle">The Growth of Gaming</h5>
<p class="list__para">How the pandemic has sparked fresh opportunities.</p>
</div>
</div>
</li>
</ul>
</div>
</main>
<footer class="footer">
Challenge by <a class="footer__link" href="https://www.frontendmentor.io/profile/beatrizang" target="_blank" rel="noopener noreferrer">Frontend Mentor</a>.
Coded by <a class="footer__link" target="_blank" rel="noopener noreferrer" href="https://github.com/beatrizang">Beatriz</a>.
</footer>
<script src="./js/index.js"></script>
</body>
</html>