-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestPage.html
More file actions
40 lines (38 loc) · 743 Bytes
/
testPage.html
File metadata and controls
40 lines (38 loc) · 743 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
h1{text-align:center;}
.center {
margin-left:auto;
margin-right:auto;
width:225px;
}
</style>
</head>
<body>
<h1>Spanish Placement Exam</h1>
<div class="center">
<form>
<table>
<tr>
<td align="center" colspan="2">
<img src="LCLogo.jpg" width="225" height="111"><br><br>
</td>
</tr>
<tr>
<td align="right">Username:</td>
<td align="left"><input type="text" name="username" /></td>
</tr>
<tr>
<td align="right">Password:</td>
<td align="left"><input type="text" name="password" /></td>
</tr>
<tr>
<td align="center" colspan="2"><button type="button">Login</button></td>
</tr>
</table>
</form>
</div>
</body>
</html>