-
Notifications
You must be signed in to change notification settings - Fork 0
/
business.html
57 lines (56 loc) · 2.14 KB
/
business.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
<!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" />
<link rel="apple-touch-icon" sizes="180x180" href="imges/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="imges/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="imges/favicon-16x16.png">
<link rel="manifest" href="imges/site.webmanifest">
<link rel="mask-icon" href="imges/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<title>Business News</title>
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v4.0.0/css/line.css"
/>
<link rel="stylesheet" href="./styles/footerInside.css" />
<link rel="stylesheet" href="./styles/business.css" />
<link rel="stylesheet" href="./styles/navbarInside.css" />
</head>
<body>
<div id="nav1"></div>
<div id="nav2"></div>
<p><a href="./index.html">Home ▶ </a>Business News</p>
<div id="container1">
<h1>Business News</h1>
</div>
<div id="container2">
<div id="trending">
<h2>TRENDING</h2>
<!-- append trending/popularity fetched API data -->
</div>
<div id="business">
<!-- append world news data here and also filter by country -->
</div>
<div id="add">
<video controls muted loop autoplay>
<source
src="https://cdn4.fireworktv.com/medias/2022/8/16/1660653072-vozrwsfb/watermarked/540/bulk_import_4189070-1660653027-gdrive-2-15_1_6.mp4"
type="video/mp4"
/>
</video>
<video controls muted loop autoplay>
<source
src="https://cdn4.fireworktv.com/medias/2022/8/24/1661342682-mrpeixcg/watermarked/540/bulk_import_6432809-1661342649-gdrive-2-20_2_4.mp4"
type="video/mp4"
/>
</video>
</div>
</div>
<div id="footer"></div>
</body>
</html>
<script src="./scripts/business.js" type="module"></script>