-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhow_to.html
132 lines (119 loc) · 6.79 KB
/
how_to.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<!--
Build and Repair Service website
Author: Dmitrii Sumenko
Date: 11/07/2022
Filename: how_to.html
-->
<meta charset="UTF-8">
<title>How to</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/how_to_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>
<h1 id="title">HOW TO GUIDES</h1>
<h3 id="how_to">If you have issues with your computer, it may feel as the end of the world. Before booking an appointment
with our company to fix your device, please check common issues that may occur and potential fix. If nothing helps,
feel free to contact us, we provide wide specter of services. You can find contact info <a href="contacts.html">here.</a>
</h3>
<img id="fix" src="img/fix.jpg" alt="Fix your PC" />
<article id="faqs">
<h2><a href="#">Computer Slowdowns</a></h2>
<div class="hide">
<p>One of the most common problems users have with their computer is that it is "running slow."
This can be caused by many things. However, typically it is referring to the time it takes
to turn on the PC, open programs, or do just about anything. In some extreme cases, this can
even mean input lag from your keyboard to what appears on the screen. This issue can be
incredibly frustrating, because it can affect multiple programs or areas on your computer
and seriously reduce productivity.
</p>
</div>
<h2><a href="#">PC Will NOT Turn On</a></h2>
<div class="hide">
<p>Pressing the power button on your computer and having nothing happen can feel like the end of the world.
Luckily, power issues do not necessarily mean the entire PC is broken or that data has been lost. Both
desktops and laptops can refuse to turn on for a number of reasons. Sometimes it can even be just a
peripheral such as an external monitor that is having problems and stopping the PC from turning on
entirely. If you press the power button to start your PC and nothing happens, do not panic. Remember
to give the computer a moment to fully power-on before pressing the power or reset button again.
</p>
</div>
<h2><a href="#">Peripherals Not Working</a></h2>
<div class="hide">
<p>
Sometimes the most annoying problems are not with your computer itself but rather with the peripherals
you are trying to use with the machine. Keyboards and mice see a tremendous amount of daily use, so it
is not uncommon for them to fail on occasion. Other devices such as microphones or presentation-based
remotes can have complicated setup processes that can create potential issues later down the road. When
any of these devices fail to work properly, they can create costly and annoying downtime that is not
ideal for any user.
</p>
</div>
<h2><a href="#">Audio Issues</a></h2>
<div class="hide">
<p>
Virtual meetings have become standard these days, and so have a host of audio issues that can make using
your PC unbearable. Microphones can get accidentally muted, or audio sources can switch within different
programs. Hardware can fail, but it is uncommon. More often than not, sound issues can be resolved from
within the operating system.
</p>
</div>
<h2><a href="#">Blue Screen of Death</a></h2>
<div class="hide">
<p>
The most terrifying of computer problems is the dreaded blue screen of death. This term refers to the
blue error screen that appears when your computer has a critical failure of some kind. Blue screens can
result in data loss or worse and need to be addressed immediately. OS updates can sometimes result in
blue screen errors, and if that's the case, you can usually fix the issue yourself. Commonly, there is
an error code associated with a blue screen, so you should try to write that information down when
possible.
</p>
</div>
</article>
<div id="tips">
<p>When something goes seriously wrong with your laptop, you usually receive an advance warning. A virus might
alter your security settings, for example, or a failing hard drive might start making funny noises. If you
catch these signals early, you can quickly diagnose and fix your computer.</p>
<p>Many of our recommended solutions involve a thorough malware scan. If you haven’t already installed antivirus
and anti-malware programs on your system, do that now. You can rely on the build-in Windows or macOS programs,
or go shopping for another security suite. Just make sure to put in the research: Check out an online buying
guide for Windows or macOS, read up on user and professional reviews, and find the right set of tools for your
needs. Don’t let price deter you—solid computer security is worth the money.</p>
</div>
</header>
<footer>
<script src="scripts/small_changes.js"></script>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="scripts/menu.js"></script>
<script src="scripts/toggle.js"></script>
</body>
</html>