-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 999 Bytes
/
index.html
File metadata and controls
44 lines (44 loc) · 999 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
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<script src="index.js"></script>
<link href="index.css" rel="stylesheet">
</head>
<body id="body">
<form class="form" action="" id="form1">
<div>
<label for="name">name: </label>
<input type="text" name="name" id="name" required>
</div>
<div>
<label for="position">position: </label>
<input type="text" name="position" id="position" required>
</div>
<div>
<label for="team">team: </label>
<input type="text" name="team" id="team" required>
</div>
<div>
<input type="submit" value="send it, sir" required>
</div>
</form>
<div class="card">
<img src="https://placekitten.com/500/600" class="kitty">
<div class="bottom">
<div class="bottomleft">
<div class="name">
Lil' Guy
</div>
<div class="position">
Second Base
</div>
</div>
<div class="bottomright">
<div class="team">
Detroit Tigers
</div>
</div>
</div>
</div>
</body>
</html>