first commit

This commit is contained in:
k0rrluna 2024-09-22 00:17:35 +03:00
commit 63380e77ac
8 changed files with 48 additions and 0 deletions

13
anilkorayTR/about.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test about</title>
</head>
<body>
<h1>COMMUNIST DETECTOR</h1>
<p>What is your opinion about <strong>IP (Intellectual property)</strong>?</p>
<li><a href="good.html">It's a GOOD THING!</a></li>
<li><a href="bad.html">It's againt freedom of speech! So it's a bad thing!</a></li>
</body>
</html>

View File

12
anilkorayTR/bad.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Failed!</title>
</head>
<body>
<h1>OH GOD! NOOOOOOOOOOOOOOOOOOOOOOOO</h1>
<h1>WHY?? WHY THE HELL!!</h1>
<h2>GO TO GULAG!</h2>
</body>
</html>

View File

11
anilkorayTR/good.html Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Passed!</title>
</head>
<body>
<h1>Welcome back mate!</h1>
<p>You're<strong>not COMMUNIST!</strong>Congratz!!!!!!</p>
</body>
</html>

View File

12
anilkorayTR/index.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>This is a test site!</title>
</head>
<body>
<h1>Woah! IT'S ALIVE!!!</h1>
<p>IT'S <strong>BREATHING! RUUN!</strong></p>
<a href="about.html">about page!</a>
</body>
</html>

View File