-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassignment_2.html
More file actions
159 lines (131 loc) · 4.4 KB
/
assignment_2.html
File metadata and controls
159 lines (131 loc) · 4.4 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!--
1. replicate the google form - google_form_tshirt_signup.png
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Electricity Purchase Form</title>
<link rel="shortcut icon" href="image/html_favicon/icons8-html-color-32.png" type="image/x-icon">
<style>
*{
box-sizing: border-box;
}
body {
background: whitesmoke;
font-family: sans-serif;
}
main {
background: white;
width: 450px;
padding: 20px;
margin: 20px auto;
border-radius: 10px;
}
header {
display: flex;
flex-direction: column;
align-items: center;
}
header img {
width: 50%;
height: auto;
border: 2px solid purple;
border-radius: 5px;
padding: 5px;
}
header p,
form h5 {
font-weight: 700;
font-size: 16px;
}
form div:not(:first-child) {
margin-top: 30px;
}
label {
color: grey;
}
input[type=radio] {
accent-color: purple;
}
input[type=text] {
border: none;
border-bottom: 2px solid whitesmoke;
display:block;
width: 95%;
margin: 0 auto;
outline: none;
padding: 3px;
font-size: 14px;
}
#note{
font-size: 11px;
color: grey;
text-align: center;
margin-top: 20px;
}
#note strong{
color: black;
}
</style>
</head>
<body>
<h1>Assignment 2: Kaduna Electric Form</h1>
<p>This one's for 'Kaduna Electric'! Get ready to purchase power with a form that's stylish, functional, and guaranteed to light up your day! 💡⚡ It's electrifying and efficient, perfect for powering up in style! 🔋✨</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> |
<main>
<header>
<img src="image/kaduna-electric-logo.png" alt="Kaduna Electric Logo">
<p>Kaduna Electric</p>
</header>
<form action="">
<div>
<h5>Meter Type</h5>
<label for="prepaid">
<input type="radio" name="meter-type" id="prepaid" checked> Prepaid
</label>
<label for="postpaid">
<input type="radio" name="meter-type" id="postpaid"> Postpaid
</label>
</div>
<div>
<h5>Meter Number</h5>
<input type="text" autofocus>
</div>
<div>
<h5>Amount</h5>
<input type="text">
</div>
<div>
<h5>Mobile Number</h5>
<input type="text">
</div>
<div>
<h5>Email</h5>
<input type="text">
</div>
</form>
<p id="note"><strong>Note:</strong> This form is just a sneak peek into the electrifying experience of buying power! The full form will be available in the final version. Stay tuned and keep those circuits ready! ⚡😁</p>
</main>
</body>
</html>