-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
68 lines (66 loc) · 3.08 KB
/
Copy pathjoin.html
File metadata and controls
68 lines (66 loc) · 3.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="join.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Document</title>
</head>
<body>
<section class="info">
<div class="header">
<div class="ldiv">
<img src="pics/logo.png" class="logo">
</div>
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#contact">Contact Us</a></li>
<li><a href="join.html">Join</a></li>
</ul>
</div>
</div>
<section class="box">
<div class="fmbox">
<form action="" class="fm">
<label for=""class="bxtxt">Name</label>
<input type="text" class="bx" placeholder="eg:Alex" required>
<label for=""class="bxtxt">Email</label>
<input type="email" class="bx" placeholder="[email protected]">
<label class="bxtxt"for="phoneNumber">Phone Number</label>
<input type="tel" id="phoneNumber" class="bx" name="phoneNumber" pattern="[0-9]{10}" placeholder="##########" required><br>
<button type="submit">Submit</button>
</form>
</div>
</section>
<footer id="contactSection" class="foot">
<img src="pics/logo.png" class="flogo">
<div class="f1">
<div class="icons">
<a href="www.google.com"><i class="fa-brands fa-facebook fa-xl" style="color: #ffffff;"></i></a>
<a href="https://www.youtube.com/channel/UCI78AdiI6f7VKhqW1i4B3Rw"><i class="fa-brands fa-youtube fa-xl" style="color: #ffffff;"></i></a>
<a href="https://www.instagram.com/burgerspace.in/"><i class="fa-brands fa-instagram fa-xl" style="color: #ffffff;"></i></a>
</div>
<div class="add">
<p>West Fort Juction, Nethaji Rd, near Tip Top Furnitures, Thrissur, Kerala 680004</p>
</div>
<div class="phone">
<i class="fa-solid fa-phone fa-xl" style="color: #ffffff;"></i>
<p>07902381381</p>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
var contactAnchor = document.querySelector('a[href="#contact"]');
var contactSection = document.getElementById('contactSection');
contactAnchor.addEventListener('click', function(event) {
event.preventDefault();
contactSection.scrollIntoView({ behavior: 'smooth' });
});
});
</script>
</body>
</html>