Posts

Implementing a cover letter using html

Image
HTML Tags in the video: <b> <i> <u> <br> HTML Entities in the video: &nbsp; Follow this link for all HTML Entities Remember that HTML is used to structure the HTML document, to get the styling done CSS is used. Cover Letter: Here Code:  Here

Basic HTML Tags

Image
HTML Tags in the video: <!DOCTYPE> <html> <head> <title> <body> <div> <p> <span>

A Basic HTML Document

<!DOCTYPE html> <html> <head> <title>The title of your HTML document</title> </head> <body> This is the body of your HTML document. <p>This is a paragraph</p> <p>The HTML tags are enclosed between angle brackets ( '<' and '>' ). <br> The starting tag is <p> and the ending tag is </p> </p> </body> </html>