-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (42 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<title>Podly</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous"></head>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/landingPage.css">
<link rel="shortcut icon" href="imgs/saturnWhite.svg">
</head>
<body>
<div class="logo">
<img src="imgs/saturnWhite.svg" alt="Logo" id="logoImg">
<span id="logoText">Podly</span>
</div>
<div class="panel backdrop">
<div id="innerPanel">
<h1>Let's Simulate Risk!</h1>
<button id="personalBtn" class="homeBtns">
<span>Personal</span>
<div id="crop">
<img src="imgs/person.svg" alt="" id="personalImg">
</div>
</button>
<button id="podBtn" class="homeBtns">
<span>Pod</span>
<img src="imgs/podBtn.svg" alt="" id="podImg">
</button>
</div>
<img src="imgs/stars.svg" alt="" id="bottomStar" class="star">
<img src="imgs/stars.svg" alt="" id="leftStar" class="star">
<img src="imgs/stars.svg" alt="" id="topStar" class="star">
<img src="imgs/stars.svg" alt="" id="rightStar" class="star">
<img src="imgs/cloud.svg" alt="" id="bottomCloud" class="cloud">
<img src="imgs/cloud.svg" alt="" id="topCloud" class="cloud">
<img src="imgs/circles.svg" alt="" class="circles">
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>