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,19 @@
<html>
<head>
<title>Elements with boolean attributes</title>
</head>
<body>
<form method="get" action="resultPage.html" name="required">
<input type="text" id="working"/>
<input type="email" id="emailRequired" required/>
<input type="text" id="inputRequired" value="Example text" required=""/>
<textarea id="textAreaRequired" rows="5" cols="5" required="false">Example text</textarea>
<textarea id="emptyTextAreaRequired" rows="5" cols="5" required="required"></textarea>
</form>
<!-- Empty div to test GetAttribute -->
<div id="wallace" class="gromit"></div>
<!-- Div to test boolean attributes -->
<div id="unwrappable" nowrap>Unwrappable text</div>
</body>
</html>