Web Tech Flashcards
What does Hyper Text Mark up Language do?
Describes the content of the webpage. By content we mean the text on the page, any image etc
What is the homepage of every website called
index.html
What are tags
A html document is made up of tags. Tags tell the browser what the following data is and where it should go
What is CSS
Cascading Style Sheets
-A language that defines how webpage will look.
what are the the pros and cons of embedding css
CSS can be embedded within HTML
+No need for an external file
+Can make direct changes to a particular HTML element specific to that page
-If you want to change something across many webpages it requires many changes
What are the pros and cons of having css be an external file
+A single change can affect every webpage (no copy / paste)
+HTML files are minimal
main heading
h1
Displays image
img src=”hi.jpg>
unordered bullet list
ul
ordered list
ol
list item
li
Hyper link that can be clicked on the webpage
a href =” “
set text to bold
b
set text as italics
i
set text underlined
u