-
Notifications
You must be signed in to change notification settings - Fork 0
/
facultyprofile.html
95 lines (84 loc) · 2.43 KB
/
facultyprofile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome</title>
<link rel="stylesheet" href="./facultyprofile.css">
</head>
<body>
<nav class="sp_nav">
<h3>STUDENT<span>profile</span></h3>
<a href="./Log_In.html" class="LogOutButton"><button>Logout</button></a>
</nav>
<div class="mainbox">
<div class="sp_left">
<ul class="sp_ul">
<li><a href="#">Profile</a></li>
</ul>
</div>
<div class="fp_right">
<div class="pdetail">
<div class="headingpdeatil">
<h3>PERSONAL DETAILS</h3>
</div>
<div class="div1">
<div class="eachbox">
<h3>Name: </h3>
<p>Umang Goel</p>
</div>
<div class="eachbox">
<h3>Email: </h3>
<p>[email protected]</p>
</div>
<div class="eachbox">
<h3>Emp ID: </h3>
<p>1BM20CS176</p>
</div>
<div class="eachbox">
<h3>Phone no: </h3>
<p>+91 7676383943</p>
</div>
<div class="eachbox">
<h3>Dept: </h3>
<p>CSE</p>
</div>
<div class="eachbox">
<h3>: </h3>
<p>3rd</p>
</div>
<div class="eachbox">
<h3>Hostel In-Charge: </h3>
<p>NH-3</p>
</div>
</div>
<div class="div2">
<div class="eachbox">
<h3>Room no: </h3>
<p>3123</p>
</div>
<div class="eachbox">
<h3>Warden: </h3>
<p>Dr. Sai Nath</p>
</div>
<div class="eachbox">
<h3>Proctor: </h3>
<p>Prof. A. Antara</p>
</div>
<div class="eachbox">
<h3>Name: </h3>
<p>Umang Goel</p>
</div>
</div>
</div>
<div class="pimage">
<img src="./profilepic.png">
<h3>UMANG GOEL</h3>
<p>[email protected]</p>
<p>7676383943</p>
</div>
</div>
</div>
</body>
</html>