-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (125 loc) · 3.68 KB
/
index.html
File metadata and controls
146 lines (125 loc) · 3.68 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> -->
<title>Profile Page</title>
<style>
* {
margin: 0px;
padding: 0px;
}
.cut {
background: #072227;
color: #AEFEFF;
}
#navbar {
display: flex;
flex-direction: row;
height: 45px;
width: auto;
color: #AEFEFF;
background: #35858B;
}
.breadcrumb {}
#pro {
display: flex;
justify-content: center;
align-items: center;
padding: 0px 0px 0px 22px;
font-size: 28px;
}
.header {
display: flex;
flex-direction: row;
border: none;
margin-left: 714px;
font-size: 24px;
text-decoration: none;
}
.breadcrumb-item {
text-decoration: none;
list-style: none;
margin-top: 8px;
}
#ref {
text-decoration: none;
color: #c9f5f7;
outline: none;
padding: 0px 10px 0px 10px;
margin-left: 11px;
}
.card {
display: flex;
height: 600px;
/* background: brown; */
}
.pic {
border-radius: 5px;
border: 4px solid #eefff3;
/* float: left; */
margin-left: 410px;
}
.card-body {
margin: 20px 20px 10px 10px;
}
.card-5 {
font-size: 50px;
font-family: serif;
padding: 124px 4px 5px 100px;
}
.card-p {
margin: 12px 3px 3px 109px;
font-size: 40px;
}
.card-6 {
margin: 25px 2px 2px 100px;
font-size: 35px;
}
#btn {
margin: 30px 2px 2px 179px;
padding: 8px 11px 8px 18px;
display: flex;
justify-content: center;
align-items: center;
font-size: 25px;
border-radius: 6px;
background: #4FBDBA;
}
#rbtn {
text-decoration: none;
outline: none;
background: #4FBDBA;
color: #072227;
box-shadow: 5px 0px 5px 0px grey;
}
</style>
</head>
<body>
<div class="cut">
<nav id="navbar">
<h1 id="pro">Profile</h1>
<ul class="header">
<li class="breadcrumb-item"><a href="#" id="ref">Home</a></li>
<li class="breadcrumb-item"><a href="#" id="ref">About</a></li>
<li class="breadcrumb-item"><a href="#" id="ref">Education</a></li>
<li class="breadcrumb-item"><a href="#" id="ref">Skills</a></li>
<li class="breadcrumb-item"><a href="#" id="ref">Contact</a></li>
</ul>
</nav>
<div class="card">
<div class="card-body">
<h5 class="card-5">Hello, Myself</h5>
<p class="card-p">Shivam Gupta</p>
<h6 class="card-6">And I'm an Enggineer</h6>
<button id="btn"><a href="#" id="rbtn">Visit here..</a></button>
</div>
<img src="shiv.jpeg" class="pic" alt="...">
</div>
</div>
</body>
</html>