-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
104 lines (90 loc) · 1.93 KB
/
profile.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
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
<html>
<head>
<title>Profile Page</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<style type="text/css">
body {
background-image:url(image1.jpg);
background-size:1440px 780px;
color:white;
}
h1 {text-align:center;
color:#BFF5FE;
background-color:#2299F7;
padding-bottom:10px;
padding-top:10px;
font-weight:bold;
margin-top:25px;
}
h2 {
background-color:#74CCDA ;
color:#233B5A ;
padding: 20px 20px;
font-style:italic;
display:inline-block;
}
h3 {
margin-top:80px;
color:#1132D7 ;
}
.profilepic {
position: absolute;
}
.details {
position: absolute;
right: 10px;
line-height:70px;
font-weight:bold;
font-size:30px;
left:10px;
top:20px;
text-align: left;
}
</style>
</head>
<body>
<h1> MY PROFILE</h1>
<div class="row">
<div class="col-md-3">
<h3>
<div class="panel-group">
<div class="panel panel-primary">
<div class="panel-body" >New Requests</div>
</div>
</div>
<div class="panel-group">
<div class="panel panel-primary">
<div class="panel-body" >My interests</div>
</div>
</div>
<div class="panel-group">
<div class="panel panel-primary">
<div class="panel-body" >My projects</div>
</div>
</div>
</h3>
</div>
<div class="col-md-5">
<div class="details">
<ul>
<li>I am : </li>
<li>USN : </li>
<li>Phone : </li>
<li>email : </li>
<li>Address: </li>
</ul>
</div>
</div>
<div class="col-md-4 ">
<form action="profile-change">
<a href="php code to take input">
<img src="defimage.png" class="img-circle" alt="defimage.png" height="150" width="150" >
</a>
<p><strong><br>Change Profile picture</strong></p>
</form>
</div>
</div>
</body>
</html>