forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (80 loc) · 6.25 KB
/
index.html
File metadata and controls
101 lines (80 loc) · 6.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Modern Security Service Ltd</title>
<link href="//fonts.googleapis.com/css?family=Roboto:400,500,300" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<header>
<div class="logo">
<img id="header-img" src="https://modernsecuritys.co.uk/images/logo.png" alt="Modern Security Service logo" />
</div>
<nav id="nav-bar">
<ul>
<li><a class="nav-link" href="#">Call us</a></li>
<li><a class="nav-link" href="#">Security Guard Training</a></li>
<li><a class="nav-link" href="#">Our Services</a></li>
</ul>
</nav>
</header>
<section>
<article>
<h4>Construction Security</h4>
<p>Our Company has been thriving with construction activity recently; with this we have also seen a rise in construction site criminal activity It is a long established fact that a reader will be distracted by the readable content of a page when
looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages
and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on
purpose (injected humour and the like).</p>
<a href="https://modernsecuritys.co.uk" target="_blank">For more information Please visit</a>
<div class="con-image">
<img id="con-image" src="https://modernsecuritys.co.uk/images/services/construction_security.png" alt="Construction Security" />
</div>
</article>
<article>
<h4>Manned Guarding</h4>
<p>Our Company can offer a professional and secure manned guarding service in London and the surrounding areas,Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<a href="https://modernsecuritys.co.uk" target="_blank">For more information Please visit</a> div class="con-image">
<div class="con-image">
<img id="guard-image" src="https://modernsecuritys.co.uk/images/services/manned-guard.jpg" alt="Manned Guard" />
</div>
</article>
<article>
<h4>Festival security</h4>
<p>Our high tech security events managers will work closely with event organisers, access supervisors, staff, police and emergency services,Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical
Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going
through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC.
This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p>
<a href="https://modernsecuritys.co.uk" target="_blank">For more information Please visit</a>
<div class="con-image">
<img id="festival-image" src="https://modernsecuritys.co.uk/images/services/event-security.jpg" alt="Event Security" />
</div>
</article>
<article>
<h4>DOOR SUPERVISION</h4>
<p>All Modern Security Service Door Supervisors are fully SIA licensed (Security Industry Authority) as required by Security Industry Act 2001, and reinforced by the Licensing Act 2003. Door Supervisors are also trained in Customer Care techniques.
The strength of Modern Security Service is the ability to provide specific staffing to suit the style of individual venues. We have a successful history of providing regular Door Supervisors to nightclubs, pubs, restaurants, and private
events. It is essential that Door Supervisors work as part of the team within each venue. We consider regular door checks to monitor the progress of personnel as vital to the service we provide. We have a support unit on call to aid our
Door Supervisors throughout their shifts. Security files and radios are provided to the client and we provide additional consultancy on security issues on request.</p>
<a href="https://modernsecuritys.co.uk" target="_blank">For more information Please visit</a>
<div class="con-image">
<img id="door-image" src="https://modernsecuritys.co.uk/images/resource/door-supervision.jpg" alt="Event Security" />
</div>
</article>
</section>
</body>
<footer>
<ul>
<li><a href="https://modernsecuritys.co.uk" target="_blank">Copyright 2019, Modern Security Services Ltd</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Contact</a></li>
</ul>
<span> Privacy </span>
</footer>
</html>