-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (28 loc) · 984 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Hunt</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href='./index.css'>
</head>
<body>
<header>
<section>
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand" href="#">
<img src="#" width="30" height="30" class="d-inline-block align-top" alt="" loading="lazy"> Product Hunt
</a>
</nav>
</section>
</header>
<section style="padding-top: 20px;">
<center>
<div id="root">
</div>
</center>
</section>
<script src="./index.js"></script>
</body>
</html>