-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
120 lines (119 loc) · 4 KB
/
about.html
File metadata and controls
120 lines (119 loc) · 4 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>profile_task</title>
<link rel="icon" type="image/x-icon" href="./assets/image/desert.jpeg">
<style>
*{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
body {
background-color: rgba(232, 213, 13, 0.232);
}
.card {
width: 260px;
height: 490px;
background: linear-gradient(120deg, red, rgb(223, 52, 223), rgb(20, 214, 232), yellow, rgb(214, 6, 190)) orange 20%;
padding: 20px;
display: inline-block;
border-radius: 30px;
margin-left: 580px;
margin-top: 70px;
padding: 30px;
color: rgb(11, 11, 11);
}
.card_name {
text-align: center;
}
.card_summary {
text-align: center;
}
.card_btm {
text-align: center;
}
.btn_about {
border-radius: 5px;
background-color: rgb(237, 237, 244);
width: 80px;
color: rgb(241, 241, 243);
padding: 4px;
}
.btn_ex {
border-radius: 5px;
background-color: rgb(237, 237, 244);
width: 80px;
color: white;
padding: 2px;
}
.btn_contact {
border-radius: 5px;
background-color: rgb(237, 237, 244);
width: 80px;
color: white;
padding: 2px;
}
.btn_about:hover {
color: rgb(247, 62, 6);
}
.btn_ex:hover {
color: rgb(247, 62, 6);
}
.btn_contact:hover {
color: rgb(247, 62, 6);
}
#list nav {
margin-left: 10px;
list-style-type: none;
display: flex;
}
a {
text-decoration: none;
}
@media only screen and (max-width: 768px) {
.resp-card {
margin-left: 200px;
margin-top: 10px;
}
}
</style>
</head>
<body>
<h1 style="text-align: center;font-family:Verdana, Geneva, Tahoma, sans-serif;margin-top: 30px;padding-right: 40px;">PROFILE CARD WITH NAVIGATION BUTTON</h1>
<div class="card resp-card">
<div class="card_img">
<img src="./assets/image/hema.png"
style="width: 190px; height: 190px;border-radius: 100px; margin-left: 25px;padding: 5px;" alt="hema">
<div class="card_name">
<h1>Hema</h1>
<h3 style="opacity: 0.8;">Python Developer</h3>
</div>
</div>
<div class="card_summary">
<h3>Summary</h3>
<p>Developed and maintained multiple projects using Python and its frameworks.</p>
</div>
<div class="icon">
<i class="fa fa-facebook-square" style="font-size:24px;;"></i>
<i class="fa fa-twitter-square" style="font-size:24px"></i>
<i class="fa fa-linkedin-square" style="font-size:24px"></i>
<i class="fa fa-instagram" style="font-size:24px"></i>
</div>
<br>
<div class="main_btn">
<div class="card_btn">
<div id="list">
<nav> <button class="btn_about"><a
href="./about.html">About</a></button>
<button class="btn_ex"><a
href="./experience.html">Experience</a></button>
<button class="btn_contact"><a
href="./contact.html">Contact</a></button>
</nav>
</div>
</div>
</div>
</div>
</body>
</html>