-
Notifications
You must be signed in to change notification settings - Fork 0
/
class_activity_2.html
56 lines (47 loc) · 2 KB
/
class_activity_2.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
<!--
1. create a login form with username, password, date fields and a submit button
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Form</title>
<link rel="shortcut icon" href="image/html_favicon/icons8-html-color-32.png" type="image/x-icon">
</head>
<body>
<h1>Class Activity 2: Login Form</h1>
<p>Time to get serious (but not too serious). In this activity, I'll be designing a basic login form. Because who doesn't need a way to log into the awesomeness? 🔐</p>
<h3>Class Activity Links</h3>
<a href="index.html">Home page</a> |
<a href="class_activity_1.html">Favorite Food</a> |
<a href="class_activity_2.html">Login Form</a> |
<a href="class_activity_3.html">Favorite Book</a> |
<a href="class_activity_4.html">Feedback Form</a> |
<a href="class_activity_5.html">Basic Calculator</a> |
<a href="class_activity_6.html">Html Multimedia</a> |
<a href="class_activity_7.html">Page Replicate</a> |
<a href="class_activity_8.html">Financial Webpage Replication</a> |
<a href="class_activity_9.html">Weekly Planner</a> |
<a href="class_activity_10.html">Weekly Classroom Schedule</a> |
<a href="class_activity_11.html">Revision 1</a> |
<a href="class_activity_12.html">Revision 2</a> |
<h3>Assignment Links</h3>
<a href="assignment_1.html">T-Shirt Signup Form</a> |
<a href="assignment_2.html">Kaduna Electric Form</a> |
<a href="assignment_3.html">Cable TV Packages</a> |
<h3>Project Preview Links</h3>
<a href="https://deliciousbytes.vercel.app/" target="_blank">Delicious Bytes Food Menu</a> |
<form>
<h3>Enter your bio</h3>
<!-- <br> -->
<input type="text" placeholder="username">
<br><br>
<input type="password" placeholder="password">
<br><br>
<input type="date">
<br><br>
<button type="submit">Submit</button>
</form>
</body>
</html>