-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (72 loc) · 2.33 KB
/
index.html
File metadata and controls
81 lines (72 loc) · 2.33 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
<!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">
<title>Tech News</title>
<link rel="stylesheet" href="dist/style.css">
</head>
<body>
<!-- Header, Main section -->
<section class="header">
<header>
<h2 class="logo">Tech News</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="">Category</a></li>
<li><a href="">About</a></li>
</ul>
</header>
<div class="section_main">
<div class="title_main">
<h1>World tech news</h1>
<p>Simple news feed about modern technologies in the world. Ads free</p>
<button class="btn hero"><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">Sign up</a></button>
</div>
<div class="image_main"><img src="images/section_main.jpg" alt=""></div>
</div>
</section>
<!-- Categories section-->
<section class="section_categories">
<h3 class="section_title">Pick a topic for you!</h3>
<div class="categories">
<div class="col">
<img src="images/category_mobile.jpg" alt="Mobile phone">
<h5>Mobile</h5>
</div>
<div class="col">
<img src="images/category_pc.jpg" alt="PC hardware">
<h5>PC and related</h5>
</div>
<div class="col">
<img src="images/category_programming.jpg" alt="Lines of code">
<h5>Programming</h5>
</div>
<div class="col">
<img src="images/category_other.jpg" alt="Image of hi-tech">
<h5>Other</h5>
</div>
</div>
</section>
<!-- Quote section -->
<section class="section_quote">
<div>
<p class="quote_text">“It's not a faith in technology. It's faith in people.”</p>
<p class="author">- Steve Jobs, Co-founder of Apple</p>
</div>
</section>
<!-- Call to action (Sign up) -->
<section class="section_cta">
<div class="text_cta">
<h5>Newsletter</h5>
<p>Check out our newsletter for quick updats on <span>selected</span> topics you are interested to!</p>
</div>
<button class="btn cta"><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">Sign up</a></button>
</section>
<!-- Footer -->
<secdtion class="footer">
Copyright © The Odin Project 2022
</secdtion>
</body>
</html>