-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (94 loc) · 3.86 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
<!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">
<!-- font awesome -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v6.0.0-beta3/css/all.css">
<!-- style link -->
<link rel="stylesheet" href="styles.css">
<title>News Homepage</title>
</head>
<body>
<main class="container">
<div class="header">
<div class="head">
<img src="/logo.svg" class="icon" alt="icon">
<div >
<ul id="links">
<li>
<a class="active" href="#home">Home</a>
</li>
<li>
<a href="#home">New</a>
</li>
<li>
<a href="#home">Popular</a>
</li>
<li>
<a href="#home">Trending</a>
</li>
<li>
<a href="#home">Categories</a>
</li>
</ul>
<a href="#" id="close"><i class="far fa-times"></i></a>
</div>
<div id="mobile">
<a href="#" id="bar"><i class="far fa-bars"></i></a>
</div>
</div>
<!-- main body -->
<div id="main-page">
<div class="contain">
<img class="desktop" src="/images/image-web-3-desktop.jpg" alt="desktop-image">
<div class="caption">
<h1>The Bright Future of Web 3.0?</h1>
<div class="read">
<p>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 fulfiling its promise?</p>
<button class="btn"><a href="https://www.google.com">Read More</a></button>
</div>
</div>
</div>
<div class="min-caption">
<h2>New</h2>
<h4>Hydrogen VS Electric Cars</h4>
<p>Will hydrogen-fueled cars ever catch up to EVs?</p>
<hr>
<h3><span>The Downsides of AI Artistry</span></h3>
<p>What are the possible adverse effects of on-demand AI image generation?</p>
<hr>
<h3 class="bottom">Is VC Funding Drying Up?</h3>
<p>Private funding by VC firms is down 50% YDY. We take a look at what that means.</p>
</div>
</div>
</div>
<!-- sub-main body -->
<div class="sub-main">
<img src="/images/image-retro-pcs.jpg" alt="">
<div class="caption-1">
<h2>01</h2>
<h4>Reviving Retro PCs</h4>
<p>What happens when old PCs are given modern upgrades?</p>
</div>
<img src="/images/image-top-laptops.jpg" alt="">
<div class="caption-1">
<h2>02</h2>
<h4>Top 10 Laptops of 2022</h4>
<p>Our best picks for various needs and budgets.</p>
</div>
<img src="/images/image-gaming-growth.jpg" alt="">
<div class="caption-1">
<h2>03</h2>
<h4>The Growth of Gaming</h4>
<p>How the pandemic has sparked fresh opportunities.</p>
</div>
</div>
</main>
<!-- script link -->
<script src="/app.js"></script>
</body>
</html>