-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
80 lines (78 loc) · 3.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CS - Forum - Contact Us</title>
<link rel="stylesheet" href="contact.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<hr class="hr-cyan">
<div class="head">
<div class="head-img">
<a href="index.html">
<img src="https://dsclatur.org/wp-content/uploads/2021/09/download-1.png" alt="">
</a>
</div>
<div class="head-text">
<p class="blue-p">Dayanand Education Society's
</p>
<h1>Dayanand Science College, Latur</h1>
<p class="blue-p">Affiliated to Swami Ramanand Teerth Marathwada University, Nanded</p>
<p class="voilet-p">NAAC A+ with 3.40 CGPA, Shahu - Fule - Ambedkar Maharashtra Govt Award, UGC - College With Potential for Excellence, Best College Award by SRTMUN, DST - FIST Recognised College, Microsoft’s Showcase College and Microsoft Innovative College</p>
</div>
<div class="head-img2">
<a href=""><img src="https://dsclatur.org/wp-content/uploads/2020/08/dsclatur-NAAC-A.png" alt=""></a>
<p class="red-p">NAAC A+ with 3.2 CPGA</p>
</div>
</div>
<hr class="hr-orange">
<div class="navbar">
<ul class="list">
<li><a href="index.html">Home</a></li>
<li><a href="gallary.html">Gallary</a></li>
<li><a href="event.html">Events</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html" class="btn-contact">Contact Us</a></li>
</ul>
</div>
</header>
<main>
<div class="container-1">
<form action="">
<h1>Contact Us</h1>
<hr>
<label for="name">Name:</label><br>
<input type="text" placeholder="Enter your name"><br>
<label for="address">Address:</label><br>
<input type="text" placeholder="Enter your address"><br>
<label for="email">Email Id:</label><br>
<input type="text" placeholder="Enter your email"><br>
<label for="Feedback">Feedback:</label><br>
<textarea name="feedback" id="feedback" cols="30" rows="10"></textarea>
<br>
<button class="submit">Submit</button>
</form>
</div>
</main>
<footer>
<div class="foot">
<h1>QUICK LINKS</h1>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="gallary.html">GALLARY</a></li>
<li><a href="event.html">EVENTS</a></li>
<li><a href="about.html">ABOUT US</a></li>
<li><a href="contact.html">CONTACT US</a></li>
</ul>
<h1>FOLLOW US</h1>
<p><a href=""><i class="fa fa-facebook"></i></a><a href=""><i class="fa fa-twitter"></i></a>
<a href=""><i class="fa fa-instagram"></i></a></p>
<p>All Rights Reserved to Dayanand Science College, Latur</p>
</div>
</footer>
</body>
</html>