-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (94 loc) · 2.9 KB
/
index.html
File metadata and controls
96 lines (94 loc) · 2.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="Flat Rock IT Solutions offers expert computer repair and IT services in Flat Rock, Illinois. Serving Crawford County and Lawrence County, Illinois. Call us today!">
<title>Flat Rock IT Solutions</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
nav {
background-color: #444;
padding: 10px;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px 20px;
}
nav a:hover {
background-color: #555;
}
.content {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>Flat Rock IT Solutions</h1>
<p>Your Trusted Home and Small Business Computer Solutions
Provider</p>
</header>
<nav> <a href="#home">Home</a> <a href="#services">Services</a> <a
href="#about">About Us</a> <a href="#contact">Contact Us</a> </nav>
<div class="container">
<div id="home" class="content">
<h2>Welcome to Flat Rock IT Solutions</h2>
<p>We specialize in helping home and small business users solve their computer problems.</p>
<p>Contact us today to learn more about our services.</p>
</div>
<div id="services" class="content">
<h2>Our Services Include<br>
</h2>
<ul>
<li>Computer Setup, maintenance and repair<br>
</li>
<li>Home and Small Network Setup</li>
<li>Software Installation and Support</li>
<li>Help with Malware Infections</li>
<li>New Printer Setup<br>
</li>
</ul>
</div>
<div id="about" class="content">
<h2>About Us</h2>
<p>Flat Rock IT Solutions is a locally-owned IT company serving
home and small business users in the Crawford County and
Lawrence County, Illinois area.</p>
</div>
<div id="contact" class="content">
<h2>Contact Us</h2>
<p>Email: info@flatrockit.com</p>
<p>Phone: 618-554-2874</p>
</div>
</div>
<footer>
<p>© 2024 Flat Rock IT. All rights reserved.</p>
</footer>
</body>
</html>