-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (84 loc) · 1.96 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample webpage</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>Add new features!</p>
<em> This is a emphasized text</em>
<i>This is a intalicized text. </i>
<strong>This is a strong text. </strong>
<b>This is a bold text. </b>
<a href="https://www.google.com/">Visit Google</a>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ol>
<table>
<thead>
<tr>
<th>Name</th>
<th>USN</th>
<th>CGPA</th>
<th>Percentage</th>
</tr>
</thead>
<tbody>
<tr>
<td>Hariprasad</td>
<td>4GH20CS018</td>
<td>7.00</td>
<td>63</td>
</tr>
<tr>
<td>Kiran</td>
<td>4GH20CS065</td>
<td>9.32</td>
<td>86</td>
</tr>
<tr>
<td>Raghav</td>
<td>4GH20CS408</td>
<td>7.55</td>
<td>69</td>
</tr>
<tr>
<td>Chandan</td>
<td>4GH20CS063</td>
<td>9.33</td>
<td>86</td>
</tr>
<tr>
<td>Koushik</td>
<td>4GH20CS408</td>
<td>8.45</td>
<td>77</td>
</tr>
<tr>
<td>Ashok J S</td>
<td>4GH0CS075</td>
<td>9.10</td>
<td>83.50</td>
</tr>
</tbody>
<tfoot>
<td colspan="2">Average</td>
</tfoot>
</table>
</body>
</html>