html, css, javascript Flashcards
HTML
language or script used to describe the content and structure of webpages so that a browser is able to interpret and render it. it is usually used in conjunction with CSS
HTML
language or script used to describe the content and structure of webpages so that a browser is able to interpret and render it. it is usually used in conjunction with CSS
CSS
cascading style sheets: describes the style and formatting of a web page, controlling layout of multiple webpages at once, saving work
defines the whole document. any code enclosed in these tags are interpreted as HTML code
defines the visible, main content of page which appears in the main browser content area. Includes images, texts and hyperlinks
defines browser tab or window heading area, holds text to be displayed within tags and any script enriching page content
<h1> <h2> <h3></h3></h2></h1>
heading styles in decreasing size
<p></p>
paragraph separated with a line space above and below
<img></img>
self enclosed image tag with parameters <img></img>
<a></a>
anchor tag defining a hyperlink with location parameter <a> link text </a>
<li>
</li>
defines an individual list item within either a numbered or bulleted list
<li>
</li>
defines an individual list item within either a numbered or bulleted list
CSS
cascading style sheets: describes the style and formatting of a web page, controlling layout of multiple webpages at once, saving work
defines the whole document. any code enclosed in these tags are interpreted as HTML code
internal and inline CSS advantages
- allows you to make one off style adjustments that are unlikely to affect any other part of the website
- overrides global styles, enabling particular styles to be kept within the HTML doc