-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (62 loc) · 2.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Frontend Mentor | Fylo data storage component</title>
<meta name="description" content="Frontend Mentor challenge for Fylo data storage component">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="manifest" href="site.webmanifest">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<!-- Add your site or application content here -->
<div id="wrapper">
<div id="boxes-container">
<div id="brand-container">
<div id="logo-container">
<img src="img/logo.svg" alt="Brand Logo of Fylo data storage">
</div>
<div id="actions-container">
<div class="icon-containers">
<img src="img/icon-document.svg" alt="Icon for document">
</div>
<div class="icon-containers">
<img src="img/icon-folder.svg" alt="Icon for folder">
</div>
<div class="icon-containers">
<img src="img/icon-upload.svg" alt="Icon for upload">
</div>
</div>
</div>
<div id="space_container">
You’ve used <b>815 GB</b> of your storage
<div id="progress-bar-container">
<div id = "progress-bar">
<div id="progress-circle"></div>
</div>
</div>
<div id="storage">
<span>0 GB</span>
<span>1000 GB</span>
</div>
<div id="space_balance">
<div id="box-white">
185 GB Left
</div>
</div>
</div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://krishnaagarwal.substack.com/">Balkrishna Agarwal</a>.
</div>
</div>
</body>
</html>