0% found this document useful (0 votes)
13 views2 pages

HTML Code

The document contains two HTML snippets: one for a structured list with nested items related to 'MTU' and 'tepi', and another for a login form with fields for username and password. The login form includes buttons for submitting and resetting the form. Both snippets are basic HTML structures with appropriate tags and elements.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views2 pages

HTML Code

The document contains two HTML snippets: one for a structured list with nested items related to 'MTU' and 'tepi', and another for a login form with fields for username and password. The login form includes buttons for submitting and resetting the form. Both snippets are basic HTML structures with appropriate tags and elements.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Li and ul

<html>

<head>

<meta charset="utf-8">

<title>MTU</title>

</head>

<body>

<ul type="circle">

<li> mtu</li>

<ol type="1">

<li>main</li>

<ul type="circle">

<li>health</li>

<li>social</li>

</ul>

<li>tepi</li>

<ol type="i">

<li>sc</li>

<li>eng</li>

</ol>

</ul>

</body>

</html>
Login form
<!doctype html>

<html>

<head>

<meta charset="utf-8">

<title>login</title>

</head>

<body>

<fieldset>

<legend>login form</legend>

<form action=""method="post">

<label>UserName:</label>

<input type="text" placeholder="Enter user name"><br>

<label>Password:</label>

<input type="text" placeholder="Enter Password"><br>

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

<input type="submit" value="login">

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

<input type="submit" value="resat">

</form>

</fieldset>

</body>

</html>

You might also like