-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.php
55 lines (54 loc) · 1.41 KB
/
About.php
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
<?php
?>
<!DOCTYPE html>
<html>
<head>
<title>About</title>
<script src="https://kit.fontawesome.com/b99e675b6e.js"></script>
</head>
<body>
<div class="main_content">
<div class="header">
<div class="leftIcon">
<a href="./Home.php"><i class="fas fa-arrow-left"> Home</i></a>
</div>
</div>
</div>
<p style="text-align: center;"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d94881.7990677431!2d21.354850025749858!3d41.99906896246268!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x135415a58c9aa2a5%3A0xb2ed88c260872020!2sSkopje!5e0!3m2!1sen!2smk!4v1637587112821!5m2!1sen!2smk"
width="700" height="250" style="border:0;" allowfullscreen="" loading="lazy"></iframe></p>
</body>
</html>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
}
body{
background-color: #e6e6e6;
}
.main_content .header{
background: #262626;
color: #34b8d1;
text-align: center;
font-size: 20px;
font-family: 'Times New Roman', serif;
font-weight: bold;
border-bottom: 1px solid #e0e4e8;
margin: 0;
padding: 30px;
}
.main_content .header a{
color: #34b8d1;
position: fixed;
left: 0;
top: 0;
margin-top: 20px;
margin-left: 30px;
}
.main_content .header a:hover{
color: #fff;
}
</style>