-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemail.html
More file actions
75 lines (52 loc) · 1.28 KB
/
email.html
File metadata and controls
75 lines (52 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<title>Email</title>
<link rel="stylesheet" type="text/css" href="./email.css">
<link rel="stylesheet" type="text/css" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css">
</head>
<body>
<div class="main">
<div class="mainmid">
<h1>Contact Info</h1>
<p>For all enquiries, please contact us using the following.</p>
<div class="form">
<div class="formupper">
<div class="inside">
<div>
<i class="fas fa-phone-alt"></i>
</div>
<div class="phone1">
<h3>Phone</h3>
<p>+961(1)345 654</p>
</div>
</div>
<div class="inside">
<div>
<i class="fas fa-envelope"></i>
</div>
<div class="phone1">
<h3>Email</h3>
<p>info@ums.edu.lb</p>
</div>
</div>
</div><hr>
<div class="formlower">
<div class="inside">
<div>
<i class="fal fa-map-marker-alt"></i>
</div>
<div class="phone1">
<h3>Address</h3>
<p>Ghobeiry, Old Airport Road, Beirut, Lebanon</p>
</div>
</div>
<div class="inside">
<button onclick="window.location.href='./index.html'">Home</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>