-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.15 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.15 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
<html>
<!-- Text between angle brackets is an HTML tag and is not displayed.
Most tags, such as the HTML and /HTML tags that surround the contents of
a page, come in pairs; some tags, like HR, for a horizontal rule, stand
alone. Comments, such as the text you're reading, are not displayed when
the Web page is shown. The information between the HEAD and /HEAD tags is
not displayed. The information between the BODY and /BODY tags is displayed.-->
<head>
<title>CHANDIGARH UNIVERSITY</title>
</head>
<!-- The information between the BODY and /BODY tags is displayed.-->
<body>
<h1>Login page of CUIMS</h1>
<p>This is the page of login into cuims</p>
<p><center><img src="download.png" alt="A logo of chandigarh university"></p></center>
<form>
<table>
<tr>
<td>Username:</td>
<td><input type="text"></td>
</tr>
<tr>
<td>
Password:</td>
<td><input type ="password"></td>
</td>
</tr>
<tr>
<td>
<input type ="submit">
</td>
</tr>
</table>
</form>
</body>
</html>