-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (96 loc) · 3.97 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>NewsDaily</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css">
<link rel="icon" href="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Repl.it_logo.svg/220px-Repl.it_logo.png">
<script src="logo_page.js"></script>
<script src="script.js"></script>
</head>
<body>
<div class="container">
<!--────────────────Header───────────────-->
<header>
<a class="logo" href="#">
<img src="https://newsletter-images--timmy-i-chen.repl.co/logo-light.png" alt="repl logo" />
</a>
<nav>
<ul class="nav-bar"><div class="bg"></div>
<li><a class="nav-link active" href="#home">Home</a></li>
<li><a class="nav-link" href="#projects">Sectors</a></li>
<li><a class="nav-link" href="#contact">Contact</a></li>
</ul>
<div class="hamburger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>
<main>
<!--─────────────────Home────────────────-->
<div id="home">
<div class="filter"></div>
<section class="intro">
<h3>NewsDaily<hr></h3>
<p>A news website for all your needs.</p>
<!-- Divider -->
</section>
</div>
<!--───────────────Projects───────────────-->
<div id="projects">
<h3>Sector<hr></h3>
<p>Pick a sctor that you want to browse through.</p>
<div class="work-box">
<div class="work">
<!--───────────────card───────────────-->
<div class="card">
<img class="work-img" src="Beakers.jfif">
<a href="https://newsdaily-science.quickcode.repl.co/" target="https://newsdaily-science.quickcode.repl.co/"> <!--Link to project-->
<div class="work-content">Science</div></a>
</div>
<div class="card">
<img class="work-img" src="images.jfif">
<a href="https://newsdaily-history.quickcode.repl.co/" target="https://newsdaily-history.quickcode.repl.co/"> <!--Link to project-->
<div class="work-content">History</div></a>
</div>
<div class="card">
<img class="work-img" src="Math.png">
<a href="" target="_blank"> <!--Link to project-->
<div class="work-content">Mathamatics</div></a>
</div>
<div class="card">
<img class="work-img" src="book.jpg">
<a href="" target="_blank"> <!--Link to project-->
<div class="work-content">Literature</div></a>
</div>
<div class="card">
<img class="work-img" src="sportyyy.png">
<a href="" target="_blank"> <!--Link to project-->
<div class="work-content">Sports</div></a>
</div>
<div class="card">
<img class="work-img" src="note&art.JPG">
<a href="" target="_blank"> <!--Link to project-->
<div class="work-content">Music & Arts</div></a>
</div>
</div>
</div>
</div>
<!--──────────────Contact────────────────-->
<div id="contact">
<h3>Contact<hr></h3>
<p>Feel free to contact me via email.</p>
<div class="social-media">
<a href="https://mail.google.com/mail/u/0/?view=cm&fs=1&tf=1&source=mailto&[email protected]" target="_blank"><i class="fas fa-envelope"></i></a>
<a href="https://repl.it/@YashasShah" target="_blank"><i class="fas fa-code"></i></a>
<a href="https://henrico.schoology.com/user/56262070/info" target="_blank"><i class="fas fa-school"></i></a>
</div>
</main>
<footer class="copyright">© 2021 Yashas Shah. All Rights Reserved.</footer>
</div>
</body>
</html>