-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (79 loc) · 2.59 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
<!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="stylesheet" href="style.css" >
<title>Univel Assignment</title>
</head>
<body>
<div class="container">
<header>
<div class="logo"><img src="logo.svg" alt="logo">
</div>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<nav class="nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">New</a></li>
<li><a href="#">Popular</a></li>
<li><a href="#">Trending</a></li>
<li><a href="#">Categories</a></li>
</ul>
</nav>
</header>
<div class="hero">
<img src="image-web-3-desktop.jpg" alt="header image">
</div>
<div class="bar1">
<h2>New </h2>
<h3><a href="#">Hydrogen VS Electric Cars</a></h3>
<p>Will hydrogen-fueled cars ever catch up to EVs?</p>
<h3><a href="#">The Downsides of AI Artistry</a></h3>
<p> What are the possible adverse effects of on-demand AI image generation?</p>
<h3> <a href="#">Is VC Funding Drying Up?</a></h3>
<p> Private funding by VC firms is down 50% YOY. We take a look at what that means.</p>
</div>
<div class="title">
<h1>The Bright Future of Web 3.0?</h1>
</div>
<main>
<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 fulfilling its promise?
</p>
<button class="callout"> Read more</button>
</main>
<footer>
<div class="foot_sec">
<div class="foot_thumb"> <img src="image-retro-pcs.jpg" alt="retro pc"></div>
<div class="foot_cont">
<div class="foot_no"><h2> 01 </h2></div>
<h3><a href="#"> Reviving Retro PCs</a></h3>
<p>What happens when old PCs are given modern upgrades?</p>
</div>
</div>
<div class="foot_sec">
<div class="foot_thumb"> <img src="image-top-laptops.jpg" alt="laptop"> </div>
<div class="foot_cont">
<div class="foot_no"> <h2>02</h2></div>
<h3><a href="#">Top 10 Laptops of 2022</a></h3>
<p>Our best picks for various needs and budgets.</p>
</div>
</div>
<div class="foot_sec">
<div class="foot_thumb"><img src="image-gaming-growth.jpg" alt="pc game"> </div>
<div class="foot_cont">
<div class="foot_no"><h2>03</h2></div>
<h3><a href="#">The Growth of Gaming</a></h3>
<p> How the pandemic has sparked fresh opportunities.</p>
</div>
</div>
</footer>
</div>
</body>
</html>