-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.html
More file actions
85 lines (78 loc) · 2.7 KB
/
values.html
File metadata and controls
85 lines (78 loc) · 2.7 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" media="screen and (max-width: 768px)" href="css/mobile.css">
<link rel="stylesheet" media="screen and (min-width: 1100px)" href="css/widescreen.css">
<style>
#values-content {
padding: 2rem 0;
}
#values-content-img {
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<nav id="navbar">
<h1 class="logo">
<img width="100" height="70" src="./img/logo3.jpg">
</h1>
<ul>
<li><a href="./index.html">Home</a></li>
<div class="dropdown">
<button class="dropbtn">About us
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="./vision.html">Our Vision</a>
<a href="./values.html">Our Values</a>
<a href="./team.html">Our Team</a>
</div>
</div>
<li><a href="./index.html#services">Services</a></li>
<li><a href="./contact.html">Contact us</a></li>
</ul>
</nav>
<section id="values-content">
<h1 class="pages-header">Our Values</h1>
<div id="values-content-img">
<img src="./img/values2.png">
</div>
</section>
<footer id="main-footer">
<div id="contact-home-full">
<div id="contact-home-left">
<div class="contact-home-object">
<i class="fas fa-map-marker-alt"></i>
<p>Unit 01 85 Waverley Road London E17 3LG</p>
</div>
<div class="contact-home-object">
<i class="fas fa-copyright"></i>
<p>Oak Clinical Solutions Ltd</p>
</div>
</div>
<div id="contact-home-right">
<div class="contact-home-object">
<i class="fas fa-mobile-alt"></i>
<p>0203 576 0350</p>
</div>
<div class="contact-home-object">
<i class="fas fa-at"></i>
<p><a href="mailto:Info@OakClinicalSolutions.com">Info@OakClinicalSolutions.com</a></p>
</div>
<div class="contact-home-object">
<i class="fab fa-linkedin"></i>
<p><a href="https://www.linkedin.com/company/oak-clinical-solutions-ltd/about/?viewAsMember=true">Stay Connected</a></p>
</div>
</div>
</div>
</footer>
</body>
</html>