WEB Technologies HML Notes
WEB Technologies HML Notes
WEB
TECHNOLOGIES
• Example:
• <HTML>
• <HEAD>
• </HEAD>
• </BODY>
• </HTML>
Inserting Images
• HTML5 is a markup
language used for structuring
and presenting content on
the World Wide Web.
• Html code
• Output in Browser
• <!DOCTYPE html>
• <html lang="en">
• <head>
• <title>Inserting Line Breaks in
HTML</title>
• </head>
• <body>
• <p>This is a paragraph <br>
with line break.</p>
• <p>This is <br>another
paragraph <br> with line
breaks.</p>
• </body>
• </html>
That’s all for now…