-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
24 lines (21 loc) · 983 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"> <!-- Specifies the character encoding for the HTML document -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Ensures proper rendering and touch zooming on mobile devices -->
<title>Welcome Page</title> <!-- Sets the title of the webpage that appears in the browser tab -->
<link rel="stylesheet" href="style.css"> <!-- Linking external CSS file -->
</head>
<body>
<header>
<h1>Welcome to Our Site!</h1> <!-- Main heading/title of the page -->
</header>
<section>
<p>Thank you for visiting. </p> <!-- Short welcome message -->
<button id="counterButton">Click me</button> <!-- Button for counting clicks -->
<p>Count: <span id="clickCount">0</span></p> <!-- Display the count of clicks -->
</section>
</body>
<script src="script.js" defer></script> <!-- Linking external JavaScript file with defer attribute -->
</html>