-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathcontacts.html
82 lines (74 loc) · 3.2 KB
/
contacts.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
<!DOCTYPE html>
<html>
<head>
<title>Mozilla Campus Club IIT - Contacts</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<style>
.fdb-block {
border-bottom: solid 1px #EEE;
}
</style>
</head>
<body>
<section class="fdb-block pt-0">
<div class="container-fluid p-0 pb-md-5">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15844.84493609552!2d79.8598505!3d6.8652715!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xd5a3b0418f1cf497!2sInformatics+Institute+of+Technology+(IIT)!5e0!3m2!1sen!2s!4v1508843392447" width="100%" height="300" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
<div class="container">
<div class="row mt-5">
<div class="col-12 col-md-6 col-lg-5">
<h2>Contact Us</h2>
<p class="text-h3">
IIT, Informatics Institute of Technology is a private higher educational institute in Sri Lanka which specializes in Information Technology. It collaborates with leading foreign universities and allows students to follow those courses in Sri Lanka.
</p>
<p class="text-h3">
It is an island nation south of India in the Indian Ocean.
</p>
<p class="text-h3 mt-5">
<strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a>
</p>
<p class="text-h3">
<strong>Phone:</strong> <a href="tel:+94 72 272 7272">+94 72 272 7272</a>
</p>
</div>
<div class="col-12 col-md-6 ml-auto pt-5 pt-md-0">
<form>
<div class="row">
<div class="col">
<input type="text" class="form-control" placeholder="First name">
</div>
<div class="col">
<input type="text" class="form-control" placeholder="Last name">
</div>
</div>
<div class="row mt-4">
<div class="col">
<input type="email" class="form-control" placeholder="Enter email">
</div>
</div>
<div class="row mt-4">
<div class="col">
<input type="email" class="form-control" placeholder="Subject">
</div>
</div>
<div class="row mt-4">
<div class="col">
<textarea class="form-control" name="message" rows="3" placeholder="How can we help?"></textarea>
</div>
</div>
<div class="row mt-4">
<div class="col">
<button type="submit" class="btn">Submit</button>
</div>
</div>
</form>
</div>
</div>
</div>
<br><br><br>
</section>
</body>
</html>