1/11
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
What are the basic set up tags in html?
<html> </html>
<head> </head>
<title> </title>
<body> </body>
What are the paragraph tags?
<p> </p>
What are the heading tags?
<h1> </h1> (biggest)
<h2> </h2>
<h3> </h3> (smallest)
How do you import an image in html?
<img> src = “name of image.gif“ alt = “Smiley face“ height = “42“ width = “42“>
How do you link a website link into html?
<a href= “www.url.com“>link text</a>
What are ordered & unordered list tags?
Ordered : <ol> </ol> (numbers)
Unordered: <ul> </ul> (bullet points)
Each item in a list: <li> </li>
what are the page structure tags?
<div> </div>
What tags do you use to link a CSS file?
<link> </link>
What are tags for changing styles in CSS?
background - color;
font - family;
font - size;
height;
width;
color;
border-colour;
border-style;
border-width;
How do you link your external CSS to your main web page?
<link rel = “stylesheet“ type=”text/css” href=”File Name Of External CSS.css”
What to write if changing CSS of h1 inline?
<h1 style = “____ :_____;“>
What to write if changing CSS of h1 externally?
h1{ “____:_____;” }