-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (93 loc) · 4.34 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dev Screening Task (Jen)</title>
<link rel="stylesheet" href="style.css">
<!-- embed fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<!-- embed icons -->
<script src="https://kit.fontawesome.com/f268f55fe7.js" crossorigin="anonymous"></script>
<script src="main.js"></script>
</head>
<body>
<div class="menu">
<h1 class="black"><i class="fas fa-bars"></i></h1>
</div>
<div class="id-card">
<div class="header">
<h1>ID <i class="fas fa-user"></i></h1>
<i class="fas fa-pen edit-icon"></i>
<i class="fas fa-check save-icon" style="display: none;"></i> <!-- Not display center -->
</div>
<div class="content">
<section class="account-info">
<h2 class="rust">Account Information</h2>
<div class="column">
<div class="left"> <!-- Left column -->
<div class="label-details">
<h2>First Name</h2>
<p class="body1">Ebony</p>
</div>
<div class="label-details">
<h2>Last Name</h2>
<p class="body1">Moore</p>
</div>
</div>
<div class="right"> <!-- Right column -->
<div class="label-details">
<h2>Registered Email</h2>
<p class="body1">[email protected]</p>
</div>
<div class="label-details">
<h2>Cell Phone Number</h2>
<p class="body1">(216)835-9545</p>
</div>
</div>
</div>
</section>
<section class="address-info">
<h2 class="rust">Address</h2>
<div class="label-details">
<h2>Home Address</h2>
<p class="body1">123 Maple Street, Cleveland, OH 44119</p>
</div>
<div class="label-details">
<h2>Mailing Address</h2>
<p class="body1">10th West, 456 Apple Street, Cleveland, OH 44127</p>
</div>
<h2 class="rust">Personally Identifiable Information</h2>
<div class="label-details">
<h2>Social Security Numbers (SSNs)</h2>
<p class="body1">235-71-1083</p>
</div>
<div class="label-details">
<h2>Date of Birth</h2>
<p class="body1">05/09/1998</p>
</div>
<div class="label-details">
<h2>Medicare Beneficiary Identifiers (MBIs)</h2>
<p class="body1">1EG4-TE5-MK73</p>
</div>
</section>
<section class="doc-info">
<h2 class="rust">Documents</h2>
<div class="uploaded-files">
<div class="file">
<img src="assets/File-png.png" alt=".PNG file" class="file-img">
<p class="body2">ID Card.png</p>
</div>
<div class="file">
<img src="assets/File-doc.png" alt=".DOC file" class="file-img">
<p class="body2">Health...doc</p>
</div>
</div>
</section>
</div>
</div>
</body>
</html>