forked from mredagad/smart4education
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (95 loc) · 4.27 KB
/
index.html
File metadata and controls
114 lines (95 loc) · 4.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Smart4Education</title>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://getbootstrap.com.vn/examples/equal-height-columns/equal-height-columns.css" />
<style>
.col-sm-6 {
padding: 0;
margin: 0;
}
body {
overflow-x: hidden;
}
</style>
</head>
<body>
<div class="container">
<!-- Logo row -->
<div class="row">
<div>
<img src="logo.jpeg" style="max-width: auto; max-height: 125px;" class="center-block img-responsive" alt="logo">
</div>
</div>
<!-- Banner row -->
<div class="row">
<div class="col-sm-6">
<img src="https://placeimg.com/540/430/tech" class="img-responsive" style="min-height: 430px; max-height: 430px; width: 100%"
alt="any">
</div>
<div class="col-sm-6 " style="height:431px; font-size: 41px; font-weight: bold; color: gold; background-color: grey; text-align: center;">
<br>
<p>The website
<br>is under
<br> maintenance
<br>
</p>
<p>We will be
<br>back soon</p>
</div>
</div>
<br>
<!-- Contact us Form -->
<div class="row">
<div class="col-sm-12">
<h3 style="text-align: center">
<b>Please Contact us for Information on the following Numbers or through the Contact form</b>
</h3>
<div style="text-align: center; font-size: 16px; color: firebrick">
Mobile Number:
<br>+966 59 319 4790
<br> Office Number:
<br>+966 11 447 1516
<br> Email Address:
<br>info@smart4education.com
<br>
</div>
<h2 style="text-align: center">
<b>Contact Form</b>
</h2>
<form action="https://formspree.io/info@smart4education.com " method="POST">
<div class="form-group">
<label for="Name">Name</label>
<input type="text" class="form-control" id="exampleInputName1" placeholder="Name" name="name">
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email" name="email">
</div>
<div class="form-group">
<label for="mo_no">Mobile Number</label>
<input type="text" class="form-control" id="exampleInputMobile1" placeholder="Mobile No." name="mobile">
</div>
<div class="form-group">
<label for="Message">Message</label>
<textarea class="form-control" name="Message" placeholder="Write something.." rows="3"></textarea>
</div>
<button type="submit" value="Send" class="btn btn-default">Submit</button>
<input type="text" name="_gotcha" style="display:none" />
</form>
</div>
</div>
</div>
</body>
</html>