Deployed the page to Github Pages.

This commit is contained in:
Batuhan Berk Başoğlu 2024-11-03 21:30:09 -05:00
parent 1d79754e93
commit 2c89899458
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo
62797 changed files with 6551425 additions and 15279 deletions

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Welcome Page</title>
</head>
<body style="margin: 10px; padding: 0px;">
<iframe name="ifr" src="simple_page.html" width="400" height="300" style="border: 5px solid;"></iframe>
</body>
</html>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Welcome Page</title>
</head>
<body style="margin: 10px; padding: 0px;">
<iframe name="ifr" src="element_in_frame.html" width="500" height="400" style="border: 5px solid;"></iframe>
</body>
</html>

View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>Page With Element Out Of View</title>
</head>
<body style="margin: 10px; padding: 0px;">
<div style="height: 5000px;">Placeholder</div>
<div id="box" style="width: 100px; height: 100px; background-color: red;">Red box</div>
<div>Tex after box</div>
</body>
</html>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Page With Empty Element</title>
</head>
<body style="margin: 10px; padding: 0px;">
<div id="box"></div>
<div>Tex after box</div>
</body>
</html>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>Page With Fixed Element</title>
</head>
<body>
<div id="fixed" style="position:fixed; top:0px; left:100px; background-color:red">fixed red box</div>
<div id="placeholder" style="height: 5000px; background-color:green">Placeholder</div>
<div id="bottom">Element at the bottom</div>
<div>Tex after box</div>
</body>
</html>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Page With Hidden Element</title>
</head>
<body style="margin: 10px; padding: 0px;">
<div id="box" style="width: 100px; height: 100px; background-color: red; visibility: hidden;">Hidden box</div>
<div>Tex after box</div>
</body>
</html>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Page With Invisible Element</title>
</head>
<body style="margin: 10px; padding: 0px;">
<div id="box" style="width: 100px; height: 100px; background-color: red; display: none;">Invisible box</div>
<div>Tex after box</div>
</body>
</html>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Page With Transparent Element</title>
</head>
<body style="margin: 10px; padding: 0px;">
<div id="box" style="width: 100px; height: 100px; background-color: red; opacity: 0;">Hidden box</div>
<div>Tex after box</div>
</body>
</html>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Simple Page</title>
</head>
<body style="margin: 10px; padding: 0px;">
<div id="box" style="width: 100px; height: 100px; background-color: red;">Red box</div>
<div>Tex after box</div>
</body>
</html>