-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign11.html
More file actions
96 lines (88 loc) · 2.7 KB
/
design11.html
File metadata and controls
96 lines (88 loc) · 2.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
@import "https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css";
body{
margin:0;
padding:0;
font-family:sans-serif;
color:#3c3939;
background:#f1f1f1;
}
.profile-card{
width:400px;
margin:auto;
background:#fff;
box-shadow:0 4px 10px 0 rgba(0,0,0,0.5);
}
.image-container{
position:relative;
}
img{
width:100%;
}
.info{
color:#4b4fe2;
margin-right:16px;
}
.main-container{
padding:20px;
}
.skill-bar{
background-color: #bdc9ea;
border-radius:16px;
}
.progress-bar{
padding:0.1em 16px;
border-radius:16px;
text-align: center;
color:#fff;
background-color: #4b4fe2;
}
.title{
position:absolute;
left:15px;
bottom:0;
}
</style>
</head>
<body>
<div class="profile-card">
<div class="image-container">
<img src="char3.jpg">
<div class="title">
<h2>Jone Doe</h2>
</div>
</div>
<div class="main-container">
<p><i class="fa fa-briefcase info" aria-hidden="true"></i>Web Development</p>
<p><i class="fa fa-home info" aria-hidden="true"></i>Bangalore, IN</p>
<p><i class="fa fa-envelope info" aria-hidden="true"></i>demo@gmail.com</p>
<p><i class="fa fa-phone info" aria-hidden="true"></i>+0000000000</p>
<hr>
<p><b><i class="fa fa-asterisk info" aria-hidden="true"></i>Skills</b></p>
<p>Adobe Photoshop</p>
<div class="skill-bar">
<div class="progress-bar" style="width:80%">80%</div>
</div>
<p>UI Design</p>
<div class="skill-bar">
<div class="progress-bar" style="width:85%">85%</div>
</div>
<p>Word Press</p>
<div class="skill-bar">
<div class="progress-bar" style="width:72%">72%</div>
</div>
<p>Graphic Designs</p>
<div class="skill-bar">
<div class="progress-bar" style="width:50%">50%</div>
</div>
</div>
</div>
</body>
</html>