-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 1.14 KB
/
Copy pathindex.html
File metadata and controls
24 lines (22 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"> <!--Charset is the system to transform bytes into readable characters, UTF-8 is an 8-bit format that can represent almost every character in all languages-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--Makes the page compatible with mobile devices-->
<title>Champion Window Pro</title> <!--Title in window tab-->
<link rel = "stylesheet" href = "style.css"> <!--links to css stylesheet-->
</head>
<body>
<header> <!--header section-->
<a href = "index.html"> <!--links image to homepage-->
<img src = "Images/logo.png" alt = "Champion Window Pro Logo" class = "Logo"> <!--alt is the text that shows when image doesn't load, class is what lets you style it in css-->
</a>
<nav> <!--Navigation bar-->
<a href ="#">Home</a>
<a href = "#">Services</a>
<a href="#">Contact</a>
</nav>
</header>
<script src = "script.js"></script> <!--Script is for executable code; this is at bottom of the body so it executes after the whole page has loaded already-->
</body>
</html>