-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
61 lines (47 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="./styles/app.css" />
<title>Fylo data storage component</title>
</head>
<body>
<main>
<section class="main__heading">
<div class="main__logo">
<img src="./images/logo.svg" alt="Flyo Logo">
</div>
<div class="main__icons">
<img src="./images/icon-document.svg" alt="">
<img src="./images/icon-folder.svg" alt="">
<img src="./images/icon-upload.svg" alt="">
</div>
</section>
<section class="main__storage">
<!-- On second thought, using the <progress> element might have been a better idea so i saved it here to edit as I need to push and make a PR pbefore today's session -->
<!-- <label for="main__progressbar">You’ve used <strong>815 GB</strong> of your storage</label>
<br>
<progress id="main__progressbar" class="main__progressbar" max="1000" value="815">815</progress> -->
<p class="main__para">You’ve used <span class="main__para--bold">815 GB</span> of your storage</p>
<br>
<div class="main__bar">
<span class="main__progressbar">
<div class="main__innercircle"></div>
</span>
</div>
<div class="main__gb">
<p>0 GB</p>
<p>1000 GB</p>
</div>
<div class="main__GBleft">
<p><span class="main__span--bold">185</span> GB LEFT</p>
</div>
</section>
</main>
<div>
</div>
</body>
</html>