Skip to content

Commit 5f725e6

Browse files
committed
add favicon link, add about,project, and contact section, and company logo
1 parent 97c7da2 commit 5f725e6

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

index.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html lang="en-us">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>ScriptLab</title>
6+
<link rel="stylesheet" href="css/style.css">
7+
<link rel="icon" type="image/x-icon" href="favicon/favicon.ico"><!--Link to favicon-->
8+
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'><!--Link to boxicons-->
9+
</head>
10+
<body>
11+
<header>
12+
<img src="images/SCRIPTLABNOBGpng.png" alt="ScriptLab" class="siteLogo">
13+
14+
<!--Define logo image map-->
15+
<map name="ScriptLabLogo">
16+
<area shape="rect" coords="0,0,50%,50%" href="footer.html" alt="ScriptLab">
17+
</map>
18+
19+
<!--Insert hamburger menu-->
20+
<i class='bx bx-menu'></i>
21+
</header>
22+
<main>
23+
<!--About section-->
24+
<section>
25+
<h2>Our Story</h2>
26+
</section>
27+
28+
<!--Projects Section-->
29+
<section>
30+
<h2>Projects</h2>
31+
</section>
32+
33+
<!--Contact Section-->
34+
<section>
35+
<h2>Get in Touch</h2>
36+
</section>
37+
38+
</main>
39+
<footer>
40+
&copy; 2024 ScriptLab All Rights Reserved
41+
</footer>
42+
</body>
43+
</html>

0 commit comments

Comments
 (0)