-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.41 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.41 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
<!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 rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" type="text/css" href="styles.css">
<title>Frontend Mentor | Profile card component</title>
</head>
<body>
<img src="images/bg-pattern-top.svg" class="bg-pattern-top">
<img src="images/bg-pattern-bottom.svg" class="bg-pattern-bottom">
<div class="Card">
<div class="content" style="">
<img src="images/image-victor.jpg" class="Profile-img"></img>
<div class="id" style="">
<div style="position: relative;margin: auto;">
<h2>Victor Crest </h2>
<h2 id="age">26</h2>
</div>
</div>
<h4 style="margin: 0;text-align: center;">London</h4>
</div>
<hr noshade="">
<div class="bottom">
<div class="followers">
<h2>80K</h2>
<p>Followers</p>
</div>
<div class="likes">
<h2>803K</h2>
<p>Likes</p>
</div>
<div class="photos">
<h2>1.4K</h2>
<p>Photos</p>
</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="#">Majd AL HYDER</a>.
</div-->
</body>
</html>