Skip to content

Commit f094f60

Browse files
Revise index.html for TestingDemo project
Updated project title and added styling, header, main content, and footer to enhance the structure and presentation of the HTML document.
1 parent bef221d commit f094f60

1 file changed

Lines changed: 46 additions & 6 deletions

File tree

docs/index.html

Lines changed: 46 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,52 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>My Project</title>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>TestingDemo Project</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
line-height: 1.6;
11+
margin: 0;
12+
padding: 0;
13+
color: #333;
14+
}
15+
header {
16+
background: #0073e6;
17+
color: white;
18+
padding: 20px;
19+
text-align: center;
20+
}
21+
main {
22+
padding: 20px;
23+
}
24+
footer {
25+
text-align: center;
26+
background: #f4f4f4;
27+
padding: 10px;
28+
margin-top: 20px;
29+
}
30+
</style>
731
</head>
832
<body>
9-
<h1>Welcome to My Project!</h1>
10-
<p>This is the basic setup for GitHub Pages.</p>
33+
<header>
34+
<h1>Welcome to TestingDemo</h1>
35+
</header>
36+
<main>
37+
<h2>About This Project</h2>
38+
<p>This project demonstrates QA testing principles with a practical focus on Playwright automation.</p>
39+
<h2>Key Features</h2>
40+
<ul>
41+
<li>Manual and automated testing workflows</li>
42+
<li>Playwright integration for modern UI testing</li>
43+
<li>Efficient CI/CD pipelines</li>
44+
</ul>
45+
<h2>Explore the Repository</h2>
46+
<p>Visit the <a href="https://github.com/bg-playground/TestingDemo-02">GitHub Repository</a> for more details.</p>
47+
</main>
48+
<footer>
49+
<p>&copy; 2026 TestingDemo Project</p>
50+
</footer>
1151
</body>
12-
</html>
52+
</html>

0 commit comments

Comments
 (0)