forked from aseelalmutareb/BeaverON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
102 lines (101 loc) · 3.61 KB
/
services.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="./services.css" />
<title>Services</title>
</head>
<body class="body-service">
<header class="services-header text-gray-600 body-font">
<div
class="container mx-auto flex flex-wrap p-4 flex-col md:flex-row items-center"
>
<a
href="index.html"
class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0"
>
<img class="logoImg" src="./img/logo.png" alt="logoBeaver" />
</a>
<nav
class="md:ml-auto flex flex-wrap items-center text-base justify-center"
>
<a class="navLink mr-5 hover:text-gray-900" href="about.html"
>About</a
>
<a class="navLink mr-5 hover:text-gray-900" href="services.html"
>Services</a
>
<a class="navLink mr-5 hover:text-gray-900" href="careers.html">Careers</a>
<a class="navLink mr-5 hover:text-gray-900" href="contact.html"
>Contact</a
>
<a href="./freeAudit.html" class="navLink mr-5 hover:text-gray-900"
>Free Audit</a
>
</nav>
</div>
</header>
<div class="video__wrapper">
<img
src="./img/services.gif"
class="videoBanner"
></img>
</div>
<div class="title-services">
<h1>BEAVER ON TOP-NOTCH SERVICES</h1>
<h3>We Build to Win</h3>
</div>
<section class="text-gray-600 body-font">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-wrap -mx-4 -mb-10 text-center">
<div class="inner-box sm:w-1/2 mb-10 px-4">
<div class="rounded-lg h-64 overflow-hidden">
<img
alt="content"
class="object-cover object-center h-full w-full"
src="./img//media/media9.png"
/>
</div>
<h2 class="title-font text-2xl font-medium text-gray-900 mt-6 mb-3">
Online Marketing
</h2>
<p class="leading-relaxed text-base">
Engage your customers and capture the market with captivating
content that caters to their needs.
</p>
<button
class="pink-btn flex mx-auto mt-6 text-white bg-indigo-500 border-0 py-2 px-5 focus:outline-none hover:bg-indigo-600 rounded"
>
Learn More
</button>
</div>
<div class="inner-box sm:w-1/2 mb-10 px-4">
<div class="rounded-lg h-64 overflow-hidden">
<img
alt="content"
class="object-cover object-center h-full w-full"
src="./img//media/media6.png"
/>
</div>
<h2 class="title-font text-2xl font-medium text-gray-900 mt-6 mb-3">
Web Developement
</h2>
<p class="leading-relaxed text-base">
We help you design and build products, services and experiences
that your customers will love.
</p>
<button
class="pink-btn flex mx-auto mt-6 text-white bg-indigo-500 border-0 py-2 px-5 focus:outline-none hover:bg-indigo-600 rounded"
>
Learn More
</button>
</div>
</div>
</div>
</section>
</body>
</html>