Determination of requirements to development
"convenient in application" the website.
The objective of the lesson: Learn to develop and design websites using
HTML
Methodological guide: To get started with this language, you need to open
Notepad++ and create a text file in It with the contents.
Tasks of training:Formation of concepts about networks, prerequisites and necessity of network
interaction of computers, hardware and software, global and local networks, network topology and
methods of data transmission, basic technologies, protocols and standards of local networks.
.
1-Task
<HTML>
<HEAD>
<TITLE>Simple table example <TITLE>
</HEAD>
<BODY>
<TABLE border=4>
</BODY>
<TR>
<TD> Cell A </TD>
<TD> Cell B </TD>
<TD> Cell C </TD>
</TR>
<TR>
<TD> Cell D </TD>
<TD> Cell E </TD>
<TD> Cell F </TD>
</TR>
</BODY>
</TABLE
</HTML>
2-Task
NAME NUMBER EMAIL
RUSTAM +77474561232 rus@mail.ru
AIKA +77059874114 ai@mail.ru
GUL +77026548778 gul@mail.ru
Write the code in HTML
3-Task
<!DOCTYPE html>
<html>
<head>
<metahttp-equiv="Content-Type" content="text/html; charset=utf-8">
<title> Field for text </title>
</head>
<body>
<formaction="myscript.php">
<br> NAME: <br>
<inputtype="text" name="firstname" maxlength="35" size="40">
</form>
</body>
</html>
4-Task
• <html>
<head>
<title> Inserting an image into the HTML code of a page </title>
</head>
<body>
<img src="xxx.jpg" alt=" Alternative text " width="100" height="80" />
</body>
</html>

HTML practice for beginners that will surely help you

  • 1.
    Determination of requirementsto development "convenient in application" the website.
  • 2.
    The objective ofthe lesson: Learn to develop and design websites using HTML Methodological guide: To get started with this language, you need to open Notepad++ and create a text file in It with the contents. Tasks of training:Formation of concepts about networks, prerequisites and necessity of network interaction of computers, hardware and software, global and local networks, network topology and methods of data transmission, basic technologies, protocols and standards of local networks. .
  • 3.
    1-Task <HTML> <HEAD> <TITLE>Simple table example<TITLE> </HEAD> <BODY> <TABLE border=4> </BODY> <TR> <TD> Cell A </TD> <TD> Cell B </TD> <TD> Cell C </TD> </TR> <TR> <TD> Cell D </TD> <TD> Cell E </TD> <TD> Cell F </TD> </TR> </BODY> </TABLE </HTML> 2-Task NAME NUMBER EMAIL RUSTAM +77474561232 rus@mail.ru AIKA +77059874114 ai@mail.ru GUL +77026548778 gul@mail.ru Write the code in HTML
  • 4.
    3-Task <!DOCTYPE html> <html> <head> <metahttp-equiv="Content-Type" content="text/html;charset=utf-8"> <title> Field for text </title> </head> <body> <formaction="myscript.php"> <br> NAME: <br> <inputtype="text" name="firstname" maxlength="35" size="40"> </form> </body> </html>
  • 5.
    4-Task • <html> <head> <title> Insertingan image into the HTML code of a page </title> </head> <body> <img src="xxx.jpg" alt=" Alternative text " width="100" height="80" /> </body> </html>