IT430 Assignment 1 Correct Solution Spring 2025
IT430 Assignment 1 Correct Solution Spring 2025
VUAnswer.pk
Students are supposed to write HTML code in editor (only in this inline Mode) that shows
output page like above images and marks will be awarded based on correct html tags etc.
Question
Suppose you are working as a Web Designer in a company that primarily handles E-commerce
projects, and you are asked to create a concise small webpage using HTML (same like below
images) that allows users to sign up for exclusive E-store updates and offers. Your webpage
should include the following elements:
Heading:
"E-store Exclusive Signup"
Form:
Write a HTML code for form that includes the following elements:
WhatsApp: +923162965677
MORE SOLUTIONS, HANDOUTS AND PAST PAPERS FREELY VISIT
VUAnswer.pk
A text box for the user to enter their email address.
A drop-down menu where the user can select their favorite product category (e.g.,
Electronics, Fashion, Home & Kitchen, Sports, Beauty & Health).
A submit button labeled "Join Now".
Make sure to organize the form elements neatly and provide appropriate labels for each field like
below images.
SOLUTION
CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-store Exclusive Signup</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
WhatsApp: +923162965677
MORE SOLUTIONS, HANDOUTS AND PAST PAPERS FREELY VISIT
VUAnswer.pk
align-items: center;
height: 100vh;
background-color: #f4f4f4;
}
.container {
background-color: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
width: 300px;
text-align: center;
}
h1 {
font-size: 24px;
margin-bottom: 20px;
font-weight: bold;
}
label {
font-size: 16px;
margin-bottom: 10px;
display: block;
text-align: left;
}
WhatsApp: +923162965677
MORE SOLUTIONS, HANDOUTS AND PAST PAPERS FREELY VISIT
VUAnswer.pk
input[type="email"], select, input[type="submit"] {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}
select {
padding: 10px;
}
</style>
</head>
<body>
WhatsApp: +923162965677
MORE SOLUTIONS, HANDOUTS AND PAST PAPERS FREELY VISIT
VUAnswer.pk
<div class="container">
<h1>E-store Exclusive Signup</h1>
<form action="#" method="POST">
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
WhatsApp: +923162965677
MORE SOLUTIONS, HANDOUTS AND PAST PAPERS FREELY VISIT
VUAnswer.pk
OUTPUT SCREENSHOT
WhatsApp: +923162965677
MORE SOLUTIONS, HANDOUTS AND PAST PAPERS FREELY VISIT
VUAnswer.pk
REGARD - SARIM
WHATSAPP +923162965677
PLEASE NOTE:
Don't copy-paste the same answer.
Make sure you can make some changes to your solution file before
submitting copy paste solution will be marked zero.
If you found any mistake then correct yourself and inform me.
Before submitting an assignment must check your assignment requirement
file.
If you need some help or question about file and solutions feel free to ask.
VUAnswer.pk
WhatsApp: +923162965677