HOW TO CREATE A WEB PAGE WITH HTML CODE

How to Create a Web Page using Html Code
<----START HTML CODE----->
WITH<!DOCTYPE html>
 <html>
 <head>
 <title>my web</title>
 </head>
 <body>
In creating a web page there are three thing you must note which is the <head >/<title>/<body> there are very much important now move on to the body and type,
(1) Header
(2) Title
(3) Body 
<div id="header">
if you want your text to be moving input marquee which is,
<marquee dir="left">
<span style="color: blue; font-size: 50px; font-family: impact; transform: uppercase; text-decoration: bold;>MY WEB PAGE.COM</span>
</marquee>
<hr />
</div>
<select size="100">
<option>CHOOSE LANGUAGE</option>
<option>English</option>
<option>China</option>
<option>Ghana</option>
<option>England</option>
<option>MORE</option>
</select>
<div id="form- filler">
<form method="post" action=URL">
<h1 style="clor: blue;">
INFORMATION FORM</h1>
<label>name:<label> <input type="text" size="60"/>
<label>number:</lable> <input type="text"size="60px"placeholder="e:g +2348"/>
<label>Age:</label><input type="text" size50px" placeholder="only 18+"/>
<button type="submit"value="submit"/>
<button type="reset"value="refresh"/>
</form>
<div id="footer" style="color: white; background-color: black; padding: 20px; "><center>
website created and design by<a href"MY WEB.COM"style="color: blue; text-decoration: bold; ">my web.com</a>
<br/>
copyright &#169; 2017-2020.all rights reserved
</center></div>
</div>
now remenber to close your work by typing </body>
and then end with </html> thank's to google who made it possible

FULL CODE OF HTML WEB PAGE

<!DOCTYPE html>
 <html>
 <head>
 <title>my web</title>
 </head>
 <body>
 <div id="header">
 <marquee dir="left">
<span style="color: blue; font-size: 50px; font-family: impact; transform: uppercase; text-decoration: bold;>MY WEB PAGE.COM</span>
</marquee>
<hr />
</div>
<select size="100">
<option>CHOOSE LANGUAGE</option>
<option>English</option>
<option>China</option>
<option>Ghana</option>
<option>England</option>
<option>MORE</option>
<tr></tr>
</select>
<div id="form- filler">
<form method="post" action=URL">
<h1 style="clor: blue;">
<tr>
INFORMATION FORM</h1>
</tr>
<label>name:<label> <input type="text" size="60"/>
<label>number:</lable> <input type="text"size="60px"placeholder="e:g +2348"/>
<label>Age:</label><input type="text" size50px" placeholder="only 18+"/>
<button type="submit"value="submit"/>
<button type="reset"value="refresh"/>
</form>
<div id="footer" style="color: white; background-color: black; padding: 20px; "><center>
website created and design by <a href"MY WEB.COM"style="color: blue; text-decoration: bold; ">my web.com</a>
<br/>
copyright &#169; 2017-2020.all rights reserved
</center></div>
</div>
 </body>
</html>
 

Post a Comment

0 Comments