-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (47 loc) · 1.25 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
<!-- -------------------------------
Purpose: Main HTML File
Version: 0.1
Author: Itamar Rosenblum
Date: 09-01-21
Last Update: None
------------------------------- -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forbes 400 API</title>
<!-- Main CSS -->
<link rel="stylesheet" href="css/style.css">
<!-- Query CSS -->
<link rel="stylesheet" href="css/queries.css">
</head>
<body>
<!-- Header section -->
<header>
<img src="img/logo.png" alt="Forbes Logo">
</header>
<!-- Main section -->
<main>
<section>
<!-- Table -->
<table>
<thead>
<th></th>
<th>Rank</th>
<th>Name</th>
<th>NetWorth</th>
<th>Gender</th>
<th>Residence</th>
<th>Source</th>
</thead>
<!-- Data appears here from JS -->
<tbody>
</tbody>
</table>
</section>
</main>
<!-- Main JS file -->
<script src="js/script.js"></script>
</body>
</html>