-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomputerservicehours.php
More file actions
105 lines (103 loc) · 2.29 KB
/
Copy pathcomputerservicehours.php
File metadata and controls
105 lines (103 loc) · 2.29 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
102
103
104
105
<html>
<head>
<?php include('header.php');?>
<style>
.animation{
animation: fadeInAnimation ease 2s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.col:hover {
opacity: 1;
}
.container {
text-align: center;
}
.col:action {
box-shadow: 5px 5px 5px 2px gray;
}
a {
color: black;
}
ul {
list-style-type: square;
list-style-position: inside;
}
hr {
margin-left: 20px;
margin-right: 20px;
color: white;
border: 0;
box-shadow: 1px 1px 1px 1px #ccc;
}
.background {
background-image: url("Images/stars.png");
/* Set a specific height */
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.row {
background: inherit;
text-align: center;
width: auto;
}
* {
box-sizing: border-box;
}
.blue {
color: #3A96B8;
font-weight: normal;
}
p {
text-align: center;
}
ul {
text-align: left;
padding: 10px;
}
li {
padding-top: 5px;
padding-bottom: 5px;
text-decoration: none;
}
a {
text-decoration: none;
}
</style>
<title>Deckard Tech Computer Solutions Hours of Operation</title>
</head>
<body>
<div class="container animation">
<div style="grid-column:1/4;grid-row:2;padding-bottom:20px">
<h1><b>HOURS OF OPERATION</b></h1>
</div>
<div style="grid-column:2;grid-row:3;padding-bottom:20px">
<h2><b>Week Days</b></h2>
<h5>Working Hours are From: 9AM - 9PM</h5>
</div>
<div style="grid-column:2;grid-row:4;padding-bottom:20px">
<h2><b>Weekends</b></h2>
<h5>Working Hours are From: 9AM - 9PM</h5>
</div>
<div class="row" style="grid-column:1/4;grid-row:5">
<ul>
<li>All service events must be scheduled within working hours. All emergency events outside of working hours will require excess fees.</li>
<li>All events must be scheduled two hours in advance, but that time frame cannot always be guaranteed.</li>
<li>At this time, same day service will always be provided if scheduled before 6PM.</li>
<li>If no one is available by phone, or your inquiry needs addressed outside of working hours, leave a voicemail or submit a ticket through the email listed in the contact tab at the top.</li>
</ul>
</div>
</div>
</body>
</html>