0% found this document useful (0 votes)
13 views2 pages

Coding

This document is an HTML file for a simple English quiz focused on subject-verb agreement. It includes a styled layout with a title, a description, and a button to start the quiz. The design features a dark background with contrasting text and button colors.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views2 pages

Coding

This document is an HTML file for a simple English quiz focused on subject-verb agreement. It includes a styled layout with a title, a description, and a button to start the quiz. The design features a dark background with contrasting text and button colors.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple English</title>
<link rel="icon" href="favicon.png" type="image/png">
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #0c1445;
color: #fff;
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}

p {
font-size: 40px;
}

h1 {
color: #f5c518;
text-align: center;
font-size: 35px;
}

button {
padding: 4px 9px;
margin: 2px;
font-size: 25px;
cursor: pointer;
background-color: #f5c518;
color: #1e2b78;
border: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}

button:hover {
background-color: #d4aa00;
}
.quiz-container {
max-width: 600px;
margin: auto;
padding: 10px;
border: 2px solid #1e2b78;
border-radius: 10px;
background-color: #1e2b78;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

</style>
</head>
<body background="C:\Users\User\Desktop\ICT\Untitled design.png">
<div class="quiz-container">
<h1>ENGLISH QUIZ</h1>
<center><p>Subject verb agreement</p></center>
<center><a href="C:\Users\User\Desktop\ICT\PT coding.html"><button
onclick="myFunction()">START</button></a></center>
</div>

</body>
</html>

You might also like