forked from MadullapalliSupriya/SVEC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (79 loc) · 2.24 KB
/
index.html
File metadata and controls
81 lines (79 loc) · 2.24 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
<html>
<head>
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>:: Index page ::</title>
<link rel="stylesheet" href="css/styles.css">
<script></script>
</head>
<body>
<header>
<img src="./images/svec-main-logo.png" alt="SVEC-Logo" height="10%" width="20%">
<span>Sri Vidyanikethan Engineering College </span>
<img src="./images/d1.jpg" alt="pro" height="100px" width="200px">
<nav>
<ul>
<li>
<a href="home.html">
Home
</a>
</li>
<li><a href="images/programmer.png">Services</a></li>
<li><a href="">About us</a></li>
<li><a href="">Contact</a></li>
</ul>
<ol>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ol>
</nav>
</header>
<div>
<table border="2">
<thead>
<tr>
<th>S.No</th>
<th>Student Name</th>
<th>Qualification</th>
<th>College University</th>
<th>Marks(%/CGPA)</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Neha</td>
<td>Btech-IT</td>
<td>SVEC</td>
<td>83</td>
</tr>
<tr>
<td>2</td>
<td>Hasitha</td>
<td>Btech-IT</td>
<td>SVEC</td>
<td>86</td>
</tr>
<tr>
<td>3</td>
<td>Supriya</td>
<td>Btech-IT</td>
<td>SVEC</td>
<td>88</td>
</tr>
<tr>
<td>4</td>
<td>Meghana</td>
<td>Btech-CSE</td>
<td>SVEC</td>
<td>89</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
</div>
</body>
</html>