020,021(WTLAss3)
020,021(WTLAss3)
Campus
Submitted by:
Nimbra bibi(Fa21-bse-020)
Wasifa Kanwal(Fa21-bse-021)
Index page:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Online Shop</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<div class="icons">
<a href="#"><img src="https://img.icons8.com/ios/50/000000/search--v1.png" alt="Search"></a>
<a href="conatct.html"><img src="https://img.icons8.com/ios/50/000000/contact-card.png"
alt="Contact"></a>
<a href="cart.html"><img src="https://img.icons8.com/ios/50/000000/shopping-cart--v1.png"
alt="Cart"></a>
</div>
</header>
<!-- Slider Section -->
<div class="slider">
<div class="slide"><img src="assets/slide/veg.jfif" alt="Slide 1"></div>
<div class="slide"><img src="assets/slide/cak.jfif" alt="Slide 2"></div>
<div class="slide"><img src="assets/slide/drink.jfif" alt="Slide 3"></div>
<div class="controls">
<button id="playBtn" class="control-btn">
<span class="material-icons">play_arrow</span>
</button>
<button id="pauseBtn" class="control-btn">
<span class="material-icons">pause</span>
</button>
</div>
</div>
</body>
</html>
Output:
Sign up:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up - My Online Shop</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
</fieldset>
<div class="form-group">
<button type="submit" class="submit-button">Sign Up</button>
<p>If you already have an account, click <span style="text-decoration:underline; color:
rgb(35, 35, 133);"><a href="signin.html">Sign In</a></span></p>
</div>
</fieldset>
</form>
</section>
<script src="script.js"></script>
</body>
</html>
Output:
Signin:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign In - My Online Shop</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
</body>
</html>
Output:
Contact Us :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<title>Contact Us - My Online Shop</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<label for="email">Email</label>
<input type="email" id="email" name="email"
required>
<label for="phone">Phone</label>
<input type="tel" id="phone" name="phone" required>
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject"
required>
</form>
</div>
<div class="form-column">
<label for="message">Message</label>
<textarea id="message" name="message" rows="18 "
required></textarea>
<button class="send-message">Send Message</button>
</div>
</div>
</section>
</body>
</html>
Output: