-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
59 lines (58 loc) · 1.75 KB
/
Copy pathprofile.html
File metadata and controls
59 lines (58 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Poppins&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/1ced12aa4e.js" crossorigin="anonymous"></script>
<title>A Profile Page</title>
<style>
body {
font-family: Roboto, 'Sans-Serif';
background: linear-gradient(120deg, #6457A6, #9DACFF);
}
.head {
width: 100%;
text-align: center;
margin-top: 20px;
}
.main {
display: flex;
justify-content: center;
align-items: center;
}
.sub {
background-color: #76e5fc;
border-radius: 10px;
padding: 20px;
margin-left: 30px;
}
.image {
width: 300px;
height: 300px;
border-radius: 50%;
}
</style>
</head>
<body>
<div class="head">
<h1>Dev's Profile</h1>
</div>
<div class="main">
<div class="sub">
<img class="image" src="assets/man_pic_1.png" alt="">
<h2>Name: Kenzy Keggan</h2>
<h2>Age: 27</h2>
<h2>Department: Engineering</h2>
</div>
<div class="sub">
<img class="image" src="assets/man_pic_2.png" alt="">
<h2>Name: Daniel Walt</h2>
<h2>Age: 35</h2>
<h2>Department: UI Design</h2>
</div>
</div>
</body>
</html>