-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (104 loc) · 4.23 KB
/
index.html
File metadata and controls
107 lines (104 loc) · 4.23 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
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<title>Frontend Mentor | News homepage</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<img src="images/logo.svg" alt="company logo; a W">
<input type="checkbox" id="nav-toggle" class="nav-toggle">
<nav>
<label type="button" class="nav-on-label nav-toggle-label" for="nav-toggle">
<img src="images/icon-menu.svg" alt=" menu open icon; hamburger">
</label>
<label type="button" class="nav-off-label nav-toggle-label" for="nav-toggle">
<img src="images/icon-menu-close.svg" alt="menu close icon; X">
</label>
<ul class="nav__nav">
<li class="nav__item"><a href="#" class="nav__item__link">Home</a></li>
<li class="nav__item"><a href="#" class="nav__item__link">New</a></li>
<li class="nav__item"><a href="#" class="nav__item__link">Popular</a></li>
<li class="nav__item"><a href="#" class="nav__item__link">Trending</a></li>
<li class="nav__item"><a href="#" class="nav__item__link">Categories</a></li>
</ul>
</nav>
</header>
<main>
<article class="news-box news-box--1">
<picture class="news-box--1__image">
<source media="(min-width:780px)" srcset="images/image-web-3-desktop.jpg">
<img src="images/image-web-3-mobile.jpg" alt="Colorful array of various shapes">
</picture>
<h1 class="news-box--1__heading">The Bright Future of Web 3.0?</h1>
<p class="news-box--1__content">
We dive into the next evolution of the web that claims to put the power of the platforms back into the hands of the people.
But is it really fulfilling its promise?
<br>
<button type="button" class="news-box--1__content__button">
Read more
</button>
</p>
</article>
<article class="news-box news-box--2">
<h2 class="news-box--2__header">New</h2>
<div class="news-box--2__item">
<h2 class="news-box--2__item__title">Hydrogen VS Electric Cars</h2>
<p class="news-box--2__item__content">
Will hydrogen-fueled cars ever catch up to EVs?
</p>
</div>
<hr class="news-box--2__sepration-line">
<div class="news-box--2__item">
<h2 class="news-box--2__item__title">The Downsides of AI Artistry</h2>
<p class="news-box--2__item__content">
What are the possible adverse effects of on-demand AI image generation?
</p>
</div>
<hr class="news-box--2__sepration-line">
<div class="news-box--2__item">
<h2 class="news-box--2__item__title">Is VC Funding Drying Up?</h2>
<p class="news-box--2__item__content">
Private funding by VC firms is down 50% YOY. We take a look at what that means.
</p>
</div>
</article>
<article class="news-box news-box--3">
<div class="news-box--3__item">
<img src="images/image-retro-pcs.jpg" alt="retroactive computer" class="news-box--3__item__image">
<div class="news-box--3__item__text">
<div class="news-box--3__item__text__number">01</div>
<h2 class="news-box--3__item__text__title">Reviving Retro PCs</h2>
<p class="news-box--3__item__text__content">
What happens when old PCs are given modern upgrades?
</p>
</div>
</div>
<div class="news-box--3__item">
<img src="images/image-top-laptops.jpg" alt="laptop keyboard" class="news-box--3__item__image">
<div class="news-box--3__item__text">
<div class="news-box--3__item__text__number">02</div>
<h2 class="news-box--3__item__text__title">Top 10 Laptops of 2022</h2>
<p class="news-box--3__item__text__content">
Our best picks for various needs and budgets.
</p>
</div>
</div>
<div class="news-box--3__item">
<img src="images/image-gaming-growth.jpg" alt="controller floting in hand" class="news-box--3__item__image">
<div class="news-box--3__item__text">
<div class="news-box--3__item__text__number">03</div>
<h2 class="news-box--3__item__text__title">The Growth of Gaming</h2>
<p class="news-box--3__item__text__content">
How the pandemic has sparked fresh opportunities.
</p>
</div>
</div>
</article>
</main>
<script src="index.js"></script>
</body>
</html>