-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewprofile.html
60 lines (54 loc) · 1.44 KB
/
viewprofile.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<html lang="en-US">
<title>View Profile Details</title>
<link rel="stylesheet" href="css/flatlybootstrap.css">
<style type="text/css">
.card {
/* Add shadows to create the "card" effect */
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
}
/* On mouse-over, add a deeper shadow */
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
/* Add some padding inside the card container */
.container {
padding: 10px 16px;
padding-bottom: 10px;
}
.container img
{
height: 300px;
border: 3px solid ;
}
</style>
</head>
<body>
<div class="container">
<div class="col-md-6 col-md-offset-3">
<h1 style="font-family: Supercell-Magic"> Display Profile Details </h1>
<div class="card">
<img src="images/avatar.jpg" alt="avatar" style="width:100%">
</div>
<div class="container col-md-12">
<label>Full Name</label>
<div><h3 class="form-control"> Futsal Event </h3>
<label>Username</label>
<h3 class="form-control"> Mate's Futsal </h3>
<label >Address</label>
<h3 class="form-control">Kathmandu</h3>
<label>Date Of Birth</label>
<h3 class="form-control">1995-04-15</h3>
<label>Gender</label>
<h3 class="form-control">Male</h3>
<button class="btn btn-primary"> Okay!</button>
</div>
</div>
</div>
</body>
</html>