-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNiceskill.html
More file actions
126 lines (116 loc) · 3.05 KB
/
Niceskill.html
File metadata and controls
126 lines (116 loc) · 3.05 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/3/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>NicheSkillsGrooming</title>
</head>
<style>
body {
background-color: #f3f6f9;
}
#header {
background-color:lightblue;
style:color:blue;
text-align:center;
padding:32px;
}
#headerone {
style:color:black;
text-align:center;
}
#homepage
{
float:right;
style:color:blue;
}
#section {
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
#footer {
background-color:lightblue;
color:blue;
text-align:center;
padding:28px;
margin-top: 66px;
}
form {
text-align: center;
margin : 0 auto;
}
input[type="text"]{
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
}
input[type="number"]{
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
}
input[type="date"]{
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
}
input[type="button"]{
background-color: #f4511e;
color: white;
padding: 9px 12px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 28%;
}
select{
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
width : 14%;
}
</style>
<body>
<div id="header">
<h1>
<font size="5" color="blue">Niche Skills Grooming</font>
<div id="homepage">
<font size="4" color="blue">
<a href="">Admin Login</a></font>
</div>
</h1>
</div>
<div id="headerone">
<h2>
<font size="5" color="black">Attendance</font>
</h2>
</div>
<div id="section"><br>
<form action="Attendance" method="post">
EMP Name   <input type="text" name="empname"><br>
EMP ID        <input type="number" name="empid"><br>
Project        <input type="text" name="project"><br>
Designation    <select>
<option value="ASE">ASE</option>
<option value="SE">SE</option>
<option value="ITA">ITA</option>
<option value="AST">AST</option>
<option value="ASC">ASC</option>
<option value="CON">CON</option>
</select><br>
Training      <input type="text" name="topic"><br>
Date          <input type="text" name="trainingdate"><br>
DAY           <input type="text" name="trainingday"><br>
<br>
<button type="submit" value="Submit">Submit</button>
<button type="reset" value="Reset">Reset</button>
</form>
</div>
<div id="footer">
<p>©TCS CMI - Niche skills grooming</p>
</div>
</body>
</html>