-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathFacebook.html
35 lines (34 loc) · 1.04 KB
/
Facebook.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>InternForte IIT BOMBAY Landing Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="input-box">
<div class="input-field">
<label for="mobile-number">Mobile Number:</label>
<input type="number" id="mobile-number" placeholder="Enter your mobile number" required>
</div>
<div class="input-field">
<label for="email-subject">Email Subject:</label>
<input type="text" id="email-subject" placeholder="Enter your email subject" required>
</div>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Internships</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Our Work</a></li>
</ul>
</nav>
</header>
</body>
</html>