Create Student Attendance form using html/css. Provide source codeexamples.
Answer
Output will be like:
Example code:
<html>
<head>
<link rel=”stylesheet” href=”css/style.css”/>
<link rel=”stylesheet” href=”css/bootstrap.min.css”>
<link rel=”stylesheet”href=”css/bootstrap-theme.min.css”>
<link rel=”stylesheet” href=”css/c3.css”>
</head>
<body>
<div id=”header”>
<h1>Attendance Management system</h1>
</div>
<div class=”container”>
<div id=”output”></div>
<form id=”getAttendance”>
<div class=”form-group”>
<label> Choose your year of study</label>
<select name=”year” class=”form-control”>
<option>1</option><option>2</option><option>3</option><option>4</option>
</select>
</div>
<div class=”form-group”>
<label>Enter your course subject code</label>
<input type=”text” class=”form-control”name=”SubjectCode”>
</div>
<div class=”form-group”>
<label>Enter your roll Number</label>
<input type=”text” class=”form-control”name=”rollNumber”>
</div>
<button class=”btn btn-primary”>Check</button>
</form>
</div>
</body>
</html>
Please rate it if the above solution helps you in anyway or if you have any concerns comment it, I will help you throughagain.
Attendance Management system Choosw your