HTML practice for beginners that will surely help you

Amri559698 27 views 5 slides Mar 09, 2025
Slide 1
Slide 1 of 5
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5

About This Presentation

Html


Slide Content

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 [email protected] AIKA +77059874114 [email protected] GUL +77026548778 [email protected] 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>
Tags