- Arquivos
- Index
- Style
- Script
- README
- CDN Adicionar
PLEASE WAIT...
<html>
<head>
<title> first page</title>
</head>
<body>
<p> This is a regluar text</p>
<p><b> bold text I'm fearless</b></p>
<p><strong> strong text I'm free</strong></p>
<p><big> big text excellent</big></p>
<p><small> small text great</small></p>
<p><i> italic text good</i></p>
<p> subscripted text H<sub>2</sub>O</p>
<p> superscripted text x<sup>2</sup>+2=2x<sup>2</sup></p>
<p><ins> inserted text, watch out</ins></p>
<p><del> delect text, goodbye</del></p>
<p> <sup>3</sup>/<sub>4</sub>=0.75</p>
</body>
</html>
<html>
<head><title> first page</title></head>
<body>
<h1><span>About Me</span></h1>
<p> Hey! I'm <strong>Alex</strong>. Coding has chagne my world...</p>
<p class="quote"> "Declare variables, not war"</p>
<p> Some quote <br />
<i> -by some author</i></p>
<p> This is a paragraph</p>
<p> This is a <br /> line break</p>
<p align="center"> This text is aligned to center</p>
<p> This is a text <br />
<hr align="right" width="50%" />this is also a text.</p>
<img src="file:///C:/Users/hp/Desktop/MI_04012021_2330.jpg" alt="A boy is kissing a dog." width="10%" height="5%" border="1px"/>
</body>
</html>
<html>
<head> <title> First page</title></head>
<body>
<ol>
<li> Cat</li>
<li> Dog</li>
<li> Rabbit</li>
</ol>
<ul>
<li> Dolphin</li>
<li> Horse</li>
<li> Butterfly</li>
</ul>
</body>
</html>
<html>
<head> <title> first page</title></head>
<body>
<h1> <span>My Skills</span></h1>
<ul>
<li> Html</li>
<li> Css</li>
<li> JavaScript</li>
</ul>
<ul>
<li>
<a href="https://www.sololearn.com"> A </a></li>
<li> B</li>
</ul>
</body>
</html>
<html>
<head> <title> First page</title></head>
<body>
<table align="center" border="2">
<tr>
<td> Red</td>
<td> Green</td>
<td> Blue</td>
</tr>
<tr>
<td bgcolor="yellow"> Yellow</td>
<td colspan="2"> Orange</td>
</tr>
</table> <br />
<a href="https://www.google.com" target="_blank"> Learn More </a>
</body>
</html>
<html>
<head> <title> first page</title></head>
<body>
<h1> My Schedule</h1>
<table border="2" align="right">
<tr>
<th> Day</th>
<th> Mon</th>
<th> Tue</th>
<th> Wed</th>
<th> Thu</th>
<th> Fri</th>
</tr>
<tr>
<td> 8-8:30</td>
<td class="selected"> Learn</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>9-10</td>
<td></td>
<td class="selected">Practice</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>1-1:30</td>
<td></td>
<td></td>
<td class="selected">Play</td>
<td></td>
<td></td>
</tr>
<tr>
<td>3:45-5</td>
<td></td>
<td></td>
<td></td>
<td class="selected">Code</td>
<td></td>
</tr>
<tr>
<td>6-6:15</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td class="selected">Discuss</td>
</tr>
</table><br />
<table border="2">
<tr>
<td> A</td>
<td> B</td>
</tr>
</table><br />
</body>
</html>
<html>
<head><title> first page </title></head>
<body>
<form action="" method="Get">
<input type="text" name="username" /><br />
<input type="password" name="password" />
</form>
<form method="get">
<input type="radio" name="gender" value="Female"/>Female<br />
<input type="radio" name="gender" value="Male" />Male<br />
<input type="checkbox" name="gender" value="Female" /> Female <br />
<input type="checkbox" name="gender" value="Male" /> Male <br />
<input type="Submit" name="Submit" /> <br />
<input type="text" name="name" /> <br />
<input type="Submit" value="Submit" /> <br />
</form>
</body>
</html>
<html>
<body>
<h1> Contact Me</h1>
<form>
<input type="text" name="name" /><br />
<input type="email" name="email" /><br />
<textarea name="message"></textarea>
<input type="submit" value="SEND" calss="submit" />
</form>
</body>
</html>
<html>
<head>
<title> first page</title>
</head>
<body bgcolor="#000099">
<p>
<font color="#ff0000"> This is a paragraph.</font>
</p>
<framesetcols="100, 25%, *"></frameset>
<frameset rows="100, 25%, *"></frameset>
</body>
</html>
/* ESLint rules https://eslint.org/docs/2.0.0/rules/ */
/* eslint no-undef: "off" */