-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (81 loc) · 4.1 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
Build and Repair Service website
Author: Dmitrii Sumenko
Date: 11/07/2022
Filename: index.html
-->
<meta charset="UTF-8">
<title>Home | Build and repair</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="styles/basics.css" rel="stylesheet" />
<link href="styles/reset.css" rel="stylesheet" />
<link href="styles/index_styles.css" rel="stylesheet" />
<link href="styles/common_styles.css" rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
</head>
<body>
<header>
<img src="img/banner.png" alt="Build and repair" />
<nav class="horizontalNavigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="build.html">Build</a></li>
<li><a href="repair.html">Repair</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="how_to.html">How to</a></li>
<li><a href="contacts.html">Contacts</a></li>
</ul>
</nav>
<div id="mySidePanel" class="sidePanel">
<a href="javascript:void(0)" class="closeButton" onclick="closeNav()">×</a>
<a href="index.html">Home</a>
<a href="build.html">Build</a>
<a href="repair.html">Repair</a>
<a href="gallery.html">Gallery</a>
<a href="how_to.html">FAQ</a>
<a href="contacts.html">Contacts</a>
</div>
<button type="button" class="openButton" onclick="openNav()">☰</button>
</header>
<h1 id="title">BUILD AND REPAIR<br>HOME PAGE</h1>
<article>
<div id="home_img">
<img id="slide" src="img/home_img.jpg" alt="home_img" />
</div>
<div id="slides">
<img src="img/slide1.jpg" alt="Slide 1">
<img src="img/slide2.png" alt="Slide 2">
<img src="img/slide3.webp" alt="Slide 3">
<img src="img/slide5.jpg" alt="Slide 5">
</div>
<p>We work on Apple and all brands of PC desktop and laptop computers.
Our technicians are certified across more than a dozen different
brands and with our 40 years of doing business, we’ve seen just
about every problem there is.</p>
<p class="dot">• • •</p>
<p>It can be incredibly difficult to determine what is wrong when a computer is not working correctly.
Our expert technicians have decades of experience running diagnostics & troubleshooting. We take
your device, run our diagnostic software and show you the results of the test to help determine
exactly where the problem lies. After reviewing this together we discuss with you the best course
of action in repairing or replacing parts to restore your device to working order.</p>
<p class="dot">• • •</p>
<p>Whether you are thinking about your first computer, building the highest powered gaming computer you can,
or configuring a fleet of computers to meet your business needs, we can help you reach all of your goals
with our custom-built PCs.</p>
<p class="dot">• • •</p>
<p>Looking to build a custom PC but overwhelmed by all the options and complications of building yourself?
Whether it's a top tier gaming PC, video or photo editing machine, or a workstation, pick your parts and
our expert technicians can build the PC of your dreams for you. Order within 4 hours of closing, and it
can be ready for pickup the same day!</p>
</article>
<footer>
<script src="scripts/small_changes.js"></script>
</footer>
<script src="https://code.jquery.com/jquery-3.6.1.js"></script>
<script src="scripts/slide_show.js"></script>
<script src="scripts/menu.js"></script>
</body>
</html>