-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (66 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PTC</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<header>
<div class="logo">
<img src="./images/PTC.png" alt="" />
<span>Pateros Technological College</span>
</div>
<input type="checkbox" id="menuCheck" />
<label for="menuCheck" class="menuBtn">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</label>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="about.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="hero-slider">
<div class="hero-content">
<img src="./images/icymi.jpg" alt="" id="hero-1" />
<img src="./images/itcs.png" alt="" id="hero-2" />
<img src="./images/tech.jpg" alt="" id="hero-3" />
</div>
<div class="hero-link">
<a href="#hero-1"></a>
<a href="#hero-2"></a>
<a href="#hero-3"></a>
</div>
</div>
</section>
<footer>
<h2>Pateros Technological College</h2>
<p>205 College Street, Sto. Rosario-Kanluran Pateros, Metro Manila</p>
<div class="box">
<a href="http://www.paterostechnologicalcollege.edu.ph/"
><img src="./images/PTC.png"
/></a>
<a href="https://ched.gov.ph/"><img src="./images/ched-logo.png" /></a>
<a href="https://pateroscity.net/"
><img src="./images/pateros-logo.png"
/></a>
<a href="http://ww1.alcucoa.org.ph/"
><img src="./images/alcu-logo.png"
/></a>
<a href="https://www.deped.gov.ph/"
><img src="./images/deped-logo.png"
/></a>
</div>
<hr />
</footer>
</body>
</html>