-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
124 lines (119 loc) · 3.51 KB
/
contact.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
<link rel="stylesheet" href="sty.css" />
</head>
<body>
<nav>
<img src="de5.jpg" alt="Website Logo" />
<div class="navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="course.html">Course</a></li>
<li><a href="assign.html">Assessment </a></li>
<li><a class="active" href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<section
class="contact"
style="margin-top: 150px; padding-left: 32px"
id="contact"
>
<h1 class="heading"><span>Contact</span> Us</h1>
<div class="icons-container">
<div class="icons">
<i class="fas fa-phone"></i>
<h3>Our Number</h3>
<p>+123-456-7890</p>
<p>+111-222-3333</p>
</div>
<div class="icons">
<i class="fas fa-envelope"></i>
<h3>Our Email</h3>
<p>[email protected]</p>
<p>[email protected]</p>
</div>
<div class="icons">
<i class="fas fa-map-marker-alt"></i>
<h3>Our Location</h3>
<p>Vellore Institute of Technology</p>
</div>
</div>
</section>
<script
type="text/javascript"
src="https://form.jotform.com/jsform/240623067506452"
></script>
<footer>
<div class="footer-col">
<h3>Top Production</h3>
<ul>
<li>Manage Reputation</li>
<li>Power Tools</li>
<li>Managed Website</li>
<li>Marketing Services</li>
</ul>
</div>
<div class="footer-col">
<h3>Top Production</h3>
<ul>
<li>Power Tools</li>
<li>Jobs</li>
<li>Marketing Services</li>
<li>Managed Reputation</li>
</ul>
</div>
<div class="footer-col">
<h3>Top Production</h3>
<ul>
<li>Power Tools</li>
<li>Managed Website</li>
<li>Managed Reputation</li>
<li>Marketing Services</li>
</ul>
</div>
<div class="footer-col">
<h3>Guides</h3>
<ul>
<li>Research</li>
<li>Experts</li>
<li>Managed Website</li>
<li>Marketing Services</li>
</ul>
</div>
<div class="footer-col">
<h3>Newsletter</h3>
<p>You can trust us. We only send promo offers,</p>
<div class="subscribe">
<input type="text" placeholder="Your Email Address" />
<a href="#" class="yellow">Subscribe</a>
</div>
</div>
<div class="copyright">
<p>Copyright @2024 All rights reserved | 2024 by Devank</p>
<div class="pro-links">
<i class="bx bxl-facebook"></i>
<i class="bx bxl-instagram"></i>
<i class="bx bxl-linkedin"></i>
</div>
</div>
</footer>
</body>
</html>