-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMARKSSTUDENT.HTML
119 lines (93 loc) · 2.77 KB
/
MARKSSTUDENT.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
119
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous"><!---BOOTSTRAP -->
<link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@1,700&display=swap" rel="stylesheet">
<meta charset="UTF-8" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>student's directory</title>
<style type="text/css">
#info {
margin:auto;
width:50%;
background-image: url("https://images.unsplash.com/photo-1528459801416-a9e53bbf4e17?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=655&q=80");
background-size:cover;
background-position: centre;
padding: 20px;
text-decoration-color: indigo;
font-family: 'Balsamiq Sans', cursive;
}
body {
background-image: url("https://images.unsplash.com/flagged/photo-1579133311477-9121405c78dd?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=967&q=80");
background-size:cover;
background-position: centre;
text-align: center;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">HOME /login page </a>
</div>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<h1><u>LIST OF STUDENTS</u></h1>
<br>
<hr>
<table id="info" class="table table-hover">
<tr>
<th>ROLL NO.</th>
<th> NAME </th>
<th>MATHS</th>
<th>CHEMISTRY</th>
<th>PHYSICS</th>
</tr>
<tr>
<td>1</td>
<td>AB</td>
<td >45</td>
<td >70</td>
<td >80</td>
</tr>
<tr>
<td>2</td>
<td>B</td>
<td >45</td>
<td >70</td>
<td >80</td>
</tr>
<tr>
<td>3</td>
<td>Z</td>
<td >45</td>
<td >70</td>
<td >80</td>
<tr>
<<td>4</td>
<td>Y</td>
<td >45</td>
<td >70</td>
<td >80</td>
<tr>
<td>5</td>
<td>X</td>
<td >45</td>
<td >70</td>
<td >80</td>
</tr>
</table>
<!-- This is the Major Project -->
</body>
</html>