-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenquiry.html
93 lines (76 loc) · 3.52 KB
/
enquiry.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
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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>
Destini-Enquiry
</title>
</head>
<body>
<div class="main">
<nav>
<div class="logo">
<a href="index.html"> <img src="destini logo.png" alt="canva logo"></a>
</div>
<nav class="nav-menu">
<div class="nav-links">
<a href="index.html">Home</a>
<a href="course.html">Courses</a>
<a href="exam.html">Examination</a>
<a href="faculty.html">Faculty</a>
<a href="aboutus.html">About us</a>
<a href="enquiry.html">Support</a>
</div>
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav>
<div class="mobile-menu" id="mobile-menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="course.html">Courses</a></li>
<li><a href="exam.html">Examination</a></li>
<li><a href="faculty.html">Faculty</a></li>
<li><a href="aboutus.html">About us</a></li>
<li><a href="enquiry.html">Support</a></li>
</ul>
</div>
</nav>
<div class="info">
<div id="circle">
</div>
</div>
<div class="enq"><form action="#" id="enq" method="post">
<legend>ENQUIRY</legend><br>
<p id="enquiry">For more information and enquiries please give your details so that we can contact you </p><br>
<br> <label for="name">Name:</label>
<input type="text" name="name" id="name" placeholder="Enter your name...." required><br>
<label for="email">Email:</label>
<input type="email" name="mail" id="mail" placeholder="Enter your mail id...." required><br>
<label for="phone">Mob:</label>
<input name="phone" type="number" id="phone" placeholder="Enter you phone number...."><br>
<input type="submit" class="btn"name="submit">
</div>
</form>
<div class="popup" id="popup">
<h1>Thank You! </h1>
<p>Your details have been submitted.</p><br>
<button id="ok"type="button">OK</button>
</div>
</div>
<footer>
<div class="social-links">
<a href="https://www.facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.twitter.com" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/arianevincentc?igsh=M2J2eHprZDNmdzZm" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/ariane-vincent-c-63467a297?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app" target="_blank"><i class="fab fa-linkedin-in"></i></a>
</div>
<p>© 2024 Destini. All rights reserved. Developed by Ariane Vincent C-Techfriar </p>
</footer>
<script src="script.js">
</script>
</body>
</html>