

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
A concise overview of basic html concepts, syntax, and tags. It covers essential elements such as html structure, formatting, hyperlinks, css integration, images, tables, and scripting. The guide includes clear definitions and examples, making it a useful resource for beginners learning html. It explains the purpose and usage of various html tags, including <doctype>, <html>, <head>, <title>, <body>, headings, paragraphs, and more. Additionally, it touches on html formatting, hyperlinks, css styling, image embedding, table creation, color definitions, and client-side scripting with javascript.
Typology: Exams
1 / 3
This page cannot be seen from the preview
Don't miss anything!


Editor - correct answer The program that allows you to edit and modify HTML code. ex: notepad, wordpad Syntax - correct answer Code syntax is the correct way that the code should be written. HTML - correct answer Short for HyperText Markup Language, the authoring language used to create documents on the World Wide Web. HTML defines the structure and layout of a Web document by using a variety of tags and attributes. / - correct answer A slash is used to close a HTML tage ex:
This is a heading
- correct answer The
tag defines the start of a paragraph. ex:
This is a paragraph.
HTML Formatting - correct answer HTML formatting is how the creator formats the text of the webpage. The tag for bold text is and the tag for italic is (there are more formatting tags, these are just the two most common). ex:This is bold.
This is in italics
- correct answer The HTML tag defines a hyperlink. A hyperlink (or link) is a word, group of words, or image that you can click on to jump to another document. When you move the cursor over a link in a Web page, the arrow will turn into a little hand. The most important attribute of the element is the href attribute, which indicates the link's destination. By default, links will appear as follows in all browsers: An unvisited link is underlined and blue A visited link is underlined and purple An active link is underlined and red ex: Go to webpage 2 CSS - correct answer CSS (Cascading Style Sheets) is used to style HTML elements., Cascading style sheets are used to format the layout of Web pages. They can be used to define web page elements such as text styles and tables. - correct answer In HTML, images are defined with the tag. The src element inside of the tag defines the picture to display. ex: