-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechsupport.html
More file actions
78 lines (53 loc) · 1.73 KB
/
techsupport.html
File metadata and controls
78 lines (53 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>LearnTech+ | Tech Support</title>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/techsupport.css">
<link rel="stylesheet" type="text/css" href="css/global.css">
</head>
<body>
<header>
<img id="logo" src="img/logo.png" alt="LearnTech+ Logo">
<nav>
<a href="index.html">Home</a>
<a href="techsupport.html">Tech Support</a>
<a href="courses.html">Courses</a>
<a href="premiumplus.html">Premium Plus</a>
<a href="learntech.html">Learn Tech</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section id="techsupport">
<center><h1>Tech Support</h1></center>
<div class="computersupport">
<img id="computer" src="img/course-01.jpg">
<div class="text">
<h1>Computer Support</h1>
<p>This is some text about computer support</p>
<button>Book Appointment</button>
</div>
</div>
<div class="computersupport2">
<img id="computer2" src="img/course-01.jpg">
<div class="text2">
<h1>Printer Support</h1>
<p>This is some text about computer support</p>
<button>Book Appointment</button>
</div>
</div>
<div class="computersupport3">
<img id="computer3" src="img/course-01.jpg">
<div class="text3">
<h1>Smart Device Support</h1>
<p>This is some text about computer support</p>
<button>Book Appointment</button>
</div>
</div>
</section>
<footer id="techsupport">
<img id="logo" src="img/logo.png">
<p id="footer">© Copyright 2023. All Rights Reserved. | LearnTech Plus</p>
</footer>
</body>
</html>