-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
139 lines (106 loc) · 4.36 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!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>Future-edu</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/v4-shims.min.css">
<link rel="icon" href="images/tabicon.png" type="image/x-icon">
</head>
<body>
<section class="sub-header">
<nav>
<a href="index.html"><img src="images/logo.png"></a>
<div class="nav-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#Branch"> Branches</a></li>
<li><a href="predictor.html"> Predictor</a></li>
<li><a href="about.html"> About</a></li>
</ul>
<!-- search icon -->
</div>
</nav>
<h1>Contact us</h1>
</section>
<!-- ---------contact---------- -->
<section class="contact-us">
<div class="row">
<div class="contact-col">
<div>
<h5><i class="fab fa-instagram"></i></h5>
<p>
@futureedu
</p>
</div>
<div>
<h5><i class="fab fa-google-plus"></i></h5>
<p>
contact.futureedu@gmail.com
</p>
</div>
</div>
<div class="contact-col">
<form action="">
<input type="text" placeholder="Enter your name" required>
<input type="email" placeholder="Enter your email adress" required>
<input type="text" placeholder="Enter your subject" required>
<textarea rows="8" placeholder="Message"required></textarea>
<button type="submit" class="hero-btn red-btn">Send</button>
</form>
</div>
</div>
</section>
<!-- ---------call to action--------- -->
<!-- ---------Footer---------- -->
<section class="footer">
<div class="container">
<div class="row">
<div class="col">
<img src="images/logo.png" class="footer-logo" >
<p>A one-stop solution for students that includes
preferences, minority and simultaneously predicts a suitable college
</p>
</div>
<div class="col-md-3">
<h4>Group Members</h4>
<p>Dhara Shah</p>
<p>Alefiya Rampurawala</p>
<p>Khusheeta Attarde</p>
<p>Nidhi Parab</p>
</div>
<div class="col-md-3">
<ul>
<h4>Branches</h4>
<li><a href="comps.html"><p>Computer Engineering</p></a></li>
<li><a href="IT.html"><p>Information Technology</p></a></li>
<li><a href="extc.html"><p>Electronics And Telecommunication</p></a></li>
<li><a href="electronics.html"> <p>Electronics Engineering</p></a></li>
<li><a href="AI.html"><p>Artificial-intelligence</p></a></li>
<li><a href="civil.html"><p>Civil Engineering</p></a></li>
</ul>
</div>
<div class="col-md-3">
<ul>
<h4>Other</h4>
<li><a href="predictor.html"><p>Predictor</p></a></li>
<li><a href="about.html"><p>About Us</p></a></li>
</ul>
</div>
<div class="col-md-3">
<h4>Contact Us</h4>
<p><i class="fab fa-instagram"></i>@futureedu</p>
<p><i class="fab fa-google-plus"></i>contact.futureedu@gmail.com</p>
</div>
</div> <hr>
<p class="copyright">Made by Group 13</p>
</div>
</section>
</body>
</html>