Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webserver of category and maths #34

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add files via upload
nandhana04cb authored Nov 9, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 9d72505eacf8c661ddcb4c9e31233865ebde6d98
67 changes: 67 additions & 0 deletions category.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<!DOCTYPE html>
<html>
<head>
<title>Category</title>
<style>
body {
background-image: url("https://thumbs.dreamstime.com/z/quiz-seamless-pattern-question-marks-doubt-faq-background-simple-endless-repeating-motif-poll-survey-interrogation-query-template-268165362.jpg");
background-size: cover;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}

h1 {
text-align: center;
text-transform: uppercase;
letter-spacing: 1px;
color: black;
font-weight: bold; /* Set the font to bold */
font-family: 'Courier New', monospace; /* Use a font style that appears "barredly" */
font-size: 70px;
margin-bottom: 10px; /
}

p {
text-align: center;
font-weight: bold;
color: black;
font-size: 35px;
font-family: 'Arial', sans-serif;
margin-top: 0;
}

ul {
list-style: none;
padding: 0;
}

li {
text-align: center;
margin-bottom: 40px;
background-color:lightgreen;
padding: 20px;
border-radius: 40px;
}

a {
text-decoration: none;
}
</style>
</head>
<body>
<h1>Category</h1>
<p>Select Any One Of These</p>
<ul>
<li><a href="sports.html">Sports</a></li>
<li><a href="science.html">Science</a></li>
<li><a href="history.html">History</a></li>
<li><a href="http://127.0.0.1:5000/">Maths</a></li>
</ul>
</body>
</html>