-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·65 lines (65 loc) · 1.92 KB
/
index.html
File metadata and controls
executable file
·65 lines (65 loc) · 1.92 KB
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
62
63
64
65
<!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 href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,400;0,700;1,100&display=swap" rel="stylesheet">
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link rel="stylesheet" type="text/css" href="styles.css" />
<title>Frontend Mentor | Fylo data storage component</title>
</head>
<body>
<main>
<section class="top">
<img src="images/logo.svg" alt="Fylo logo" />
<div class="main-menu-wrapper">
<div class="menu-item">
<img
class="menu-icon"
src="images/icon-document.svg"
alt="Document icon"
/>
</div>
<div class="menu-item">
<img
class="menu-icon"
src="images/icon-folder.svg"
alt="Folder icon"
/>
</div>
<div class="menu-item">
<img
class="menu-icon"
src="images/icon-upload.svg"
alt="Upload icon"
/>
</div>
</div>
</section>
<section class="storage">
<p>You’ve used <strong>815 GB</strong> of your storage</p>
<div class="storage-bar-container">
<div class="outer-bar">
</div>
<div class="storage-limits">
<p>0 GB</p>
<p>1000 GB</p>
</div>
<p id="gbLeft">185 <span>GB Left</p>
</div>
</section>
</main>
<footer>
<p>Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>.<br/> Coded by <a href="mailto:janbe30@gmail.com">Janeth Betancourt</a>.</p>
</footer>
</body>
</html>