What are HTML tags?
the building blocks of web pages, acting as instructions to web browsers on how to display content, like structuring text into paragraphs or creating hyperlinks
What is CSS, and why is it used?
CSS is used to define styles for your web pages, including the design, layout and variations in display for different devices and screen sizes
how to add a link to your coding pages?
With the anchor tag, the <A> tag. An attribute then follows the letter "A" in the tag. For a link to another web page, the "A" is followed by "HREF".
What's the purpose of the text (body, heading, functional)?
to identify the topic of the content within each section
What is border-width?
Controls the thickness or width of an element's borders, allowing you to specify a uniform border around a box or set different widths for individual sides.
What types of text are there?
s it body text, a heading, a caption, or functional UI text (like buttons or icons)
How do you center a div element in CSS?
Centering with margin inline.
Where exactly should the link go?
When adding a link in HTML, the URL (or destination) goes inside the href attribute of the <a> tag
Is the font size easy to read and accessible for all users?
Aim for a font size of at least 16 pixels (or 12 points) for body text
What is border-style?
a property that controls the visual appearance of an element's border
What is the purpose of the <body> tag?
The <body> tag contains all the visible content of an HTML page.
Explain the CSS box model?
a box that wraps around every HTML element.
How will the user know it's a link?
underlined text that is typically blue. You can also use an image as a link, which will also be underlined and blue
How do I add a font size for headings?
Modify the styles associated with those headings or use CSS to set the font size.
What is border color for coding?
a CSS property that sets the color of an element's border, allowing you to customize the appearance of elements with borders.
How do you create a hyperlink in HTML?
Create a hyperlink using the <a> tag with the href attribute.
What is important about CSS?
It is the coding language that gives a website its look and layout.
What text or image should be used for the linking ?
either text or an image, but using a combination of both is recommended for accessibility and clarity
What is the purpose of the text?
To inform, persuade, entertain, or express feelings, among other possibilities.
What are border-top-width, border-right-width, border-bottom-width, border-left-width?
Properties that control the width of an element's respective border sides.
What is the difference between HTML tags and HTML elements?
An HTML tag is a keyword enclosed in angle brackets (e.g., <p>), while an HTML element is the entire structure, including the tag, its attributes, and the content within it (e.g., <p>This is a paragraph.</p>
How to use border color in CSS?
Set color-value by name: All the 140 valid CSS color names can be assigned to the border color. ...Set Color Using Hex Value. HEX color value can be assigned to the border color. ...Set Color Using RGB Value. RGB color value can be assigned to the border color. ...Set Color to Transparent
Why is this linking your pages necessary?
to create a navigable website and allow users to move between different pages or sections within a page.
What is the purpose of the <head> tag?
The <head> tag contains information about the document, such as the title, character set, and links to external stylesheets or scripts.
What is a border?
an HTML, CSS, and a WikiText attribute that changes the color, type, and size of an element's border.