-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathretrieve.html
More file actions
36 lines (33 loc) · 1.18 KB
/
Copy pathretrieve.html
File metadata and controls
36 lines (33 loc) · 1.18 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Create Employee Detail Page</title>
<link rel="stylesheet" href="retrieve.css">
</head>
<body>
<div class="header">
<img src="logo.png" alt="logo"/ width="20%",height="10%">
<div class="header-right">
<a class="active" href="#home">Home</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
<a href="index.html">Log Out</a>
</div>
</div>
<h1>Employee Details</h1>
<div class="section">
<form class="employeedetails">
<h4> First Name</h4><input type="text" value="Vatsala"/><br><br>
<h4> Last Name</h4><input type="text" value="Tandon" /><br><br>
<h4> CGI Code</h4><input type="text" value="INT010"/><br><br>
<h4> Designation</h4><input type="text" value="Intern"/><br><br>
<h4> Years Of Experiance</h4><input type="text" value="0 years"/><br><br>
<h4>Qualification</h4><input type="text" value="B.Tech"/>
</form>
</div>
<div class="footer">
<p>Copyright @ 2008 All Rights Reserved </p>
</div>
</body>
</html>