Home
Subjects
Textbook solutions
Create
Study sets, textbooks, questions
Log in
Sign up
Upgrade to remove ads
Only $35.99/year
Coding
STUDY
Flashcards
Learn
Write
Spell
Test
PLAY
Match
Gravity
Got definitions from codecademy.com's coding course
Terms in this set (28)
HTML elements
The basic building blocks of web pages, describe each piece of content on a web page
h1 element
Used to describe the main heading of the page
Paragraph elements, "p" elements, <p>, </p>
Used to introduce body text on a page, like in an article
"A" elements, <a href = "http://quizlet.com/">Quizlet </a>
Used to create links
"IMG" element
Used to add images to a page
SRC attribute
Contains the address of the image (filename)
"ul" element
A bulleted list
"li" element
The element inside of which each item in a list is placed
"HTML" element
The element that nests everything inside a webpage
Body element, <body>, </body>
Contains the actual information in the webpage (Not to be confused with an HTML element)
doctype <!DOCTYPE html>
Tells you which type of HTML file you're using, ensures that your webpage displays consistently when being viewed from different browsers
"div" element, <div class="nav"...>, </div>
Groups other coding elements together
CSS rule
Allows certain elements to be styled different ways
CSS
Uses rules to style HTML elements. Starts with a selector
Selector
Specifies which HTML elements to style. These include HTML elements, class selectors,
Property and value
They define what aspect of the selected properties to style
RGB values and hexadecimal numbers (HEX numbers) : rgb(102,153,0),
These can be used to select the color of an object
font-family property
Sets the font value of an HTML element's text
font-size property
Sets the size value of an HTML element's text
padding property
creates space between the content and border of an element
head element, <head>, </head>
contains the information the web browser needs to display the page
link element, <link href="main.css" rel="stylesheet" />
tells the browser where to find the CSS file used to style the page
rel attribute
tells the browser that the file being linked is a CSS file
href attribute
gives the browser the path to the CSS file used to style the page
Bootstrap
a collection of prewritten CSS rules made in order to construct a website faster
pills
a set of buttons that give links to different parts of a site
JavaScript
a programming language used to create pages that respond differently to different user actions
jQuery
a collection of prewritten JavaScript code that lets us easily create interactive effects on our site
Sets with similar terms
Codecademy | Make a Website: HTML & CSS
55 terms
Web Design
70 terms
HTML
93 terms
HTML
31 terms
Other sets by this creator
uni 4 no pics
97 terms
U3 verbs no pics
54 terms
U3 adjectives no pics
56 terms
Polyatomic Atoms
40 terms
Verified questions
COMPUTER SCIENCE
The following programs or program segments has errors. Find as many as you can. char string1[] = "Billy"; char string2[] = " Bob Jones"; strcat(string1, string2);
COMPUTER SCIENCE
Before reading or writing to a file, a file object must be created via a) open b) create c) File d) Folder
COMPUTER SCIENCE
A county collects property taxes on the assessment value of property, which is 60 percent of the property’s actual value. If an acre of land is valued at $10,000, its assessment value is$6,000. The property tax is then 75¢ for each $100 of the assessment value. The tax for the acre assessed at$6,000 will be $45. Write a program that asks for the actual value of a piece of property and displays the assessment value and property tax.
COMPUTER SCIENCE
Prove that COUNTING-SORT is stable.