Want to create interactive content? It’s easy in Genially!
webpage design key concepts
SURI ISAAI CAPORAL VILLEGAS
Created on May 16, 2024
Start designing with a free template
Discover more than 1500 professional designs like these:
Transcript
Suri Isaai Caporal Villegas
Webpage design key concepts research
What is the definition of HTML?
Hypertext: text (often with embeds such as images, too) that is organized in order to connect related items Markup: a style guide for typesetting anything to be printed in hardcopy or soft copy format Language: a language that a computer system understands and uses to interpret commands.
HTML determines the structure of web pages. This structure alone is not enough to make a web page look good and interactive. So you'll use assisted technologies such as CSS and JavaScript to make your HTML beautiful and add interactivity, respectively.
How do we use html on internet?
All web pages on the internet are created using a language calledHypertext Markup Language (HTML). HTML describes:
- what information appears on a webpage
- how it appears on the page (formatting)
- any links to other pages or sites
What is the difference between webpage and website?
A website is a collection of interconnected web pages under a single domain, whereas a webpage is a single document within that website, accessible via a specific URL.
What is a web domain and how can you get one?
A **web domain** is a unique internet address for a website, like "example.com." To get one, choose an available name and register it through a domain registrar (e.g., GoDaddy, Namecheap). The process involves checking availability, paying a fee, and maintaining the registration to keep the domain active.
In HTML, what are the tags?
In HTML, tags are the building blocks used to create elements. They are enclosed in angle brackets, like <tagname>. Tags often come in pairs: an opening tag <tagname> and a closing tag </tagname>. Examples include <p> for paragraphs, <a> for links, and <div> for divisions. Tags structure and format content on web pages.
Define the 3 most common HTML tags.
- <html>: The root element that defines the entire HTML document. It wraps all the other elements.
- <head>: Contains meta-information about the document, such as its title (<title>), character set, and links to stylesheets.
- <body>: Contains the content of the HTML document, such as text, images, links, and other media.