-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext2.html
118 lines (102 loc) · 4.99 KB
/
next2.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Lobster&display=swap" rel="stylesheet">
<link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/kaushan-script" type="text/css"/>
<link rel="stylesheet" href="eprint.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>To-Do Record</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar fixed-top navbar-expand-lg navbar-light" style="background-color: #d4e0e6;">
<a class="navbar-brand fon" href="home.html">
<img src="https://pbs.twimg.com/profile_images/557932236893204480/f0DMHQJ4_400x400.png" width="30" height="30" class="d-inline-block align-top rad" alt="">
E-PRINT
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="#">Feedback</a>
</li>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-primary my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
<!-- Student's Info in Form of Table -->
<div class="container">
<div class="jumbotron">
<img src="https://cdn4.iconfinder.com/data/icons/education-flat-color-vol-2/52/file__document__documents__folder__Files__paper__record-512.png" class="img" alt="image not found">
<h1 id="stu">Student's Record</h1>
<br>
<table class="table table-striped">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Student's Name</th>
<th scope="col">Roll No.</th>
<th scope="col">Document</th>
<th scope="col">Branch & Year</th>
<th scope="col">Copies</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Student 0</td>
<td>181611****</td>
<td><a href="" download="">Download</a></td>
<td>C.S.E & 2nd</td>
<td>4</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Student 1</td>
<td>181611****</td>
<td><a href="" download="">Download</a></td>
<td>I.T & 2nd</td>
<td>1</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Student 2</td>
<td>181611****</td>
<td><a href="" download="">Download</a></td>
<td>Mechanical & 3rd</td>
<td>2</td>
</tr>
<tr>
<th scope="row">--</th>
<td>--</td>
<td>-------</td>
<td><a href="" download="">----------</a></td>
<td>-------</td>
<td>--</td>
</tr>
</tbody>
</table>
</tbody>
</table>
<form action="next6.html">
<button type="submit" class="btn btn-outline-secondary">Update</button>
</form>
<br>
<form action="next0.html" method="GET">
<button type="submit" class="btn btn-outline-primary">Log Out</button>
</form>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>