-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
44 lines (35 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card</title>
<link rel="stylesheet" href="/Style.css">
</head>
<body>
<div class="card-container">
<div class="profile-card border-radius">
<div class="front">
<div class="center-box">
<div class="image-box">
<img class="card-img border-radius" src="./Images/Boy-3.jpeg" alt="boy">
</div>
</div>
<div class="about">
<h2 class="name">John Wick</h2>
<p class="profession">Software Developer</p>
<div class="contact">
<li><img src="./icons/icons8-facebook-48.png" height="30" alt="instagram"></li>
<li><img src="./icons/icons8-twitter-circled-48.png" height="30" alt="instagram"></li>
<li><img src="./icons/icons8-instagram-48.png" height="30" alt="instagram"></li>
<li><img src="./icons/icons8-youtube-48.png" height="30" alt="instagram"></li>
</div>
</div>
</div>
<div class="back">
<div class="blue-color-box"></div>
</div>
</div>
</div>
</body>
</html>