Create Student Attendance Form Using Html Css Provide Source Code Examples Q37177926

Create Student Attendance form using html/css. Provide source codeexamples.


Answer


Output will be like:

Attendance Management system Choosw your year of study 1 Enter your course subject code Enter your roll Number Check

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

OR
OR

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.