Intro to HTML Reading Day 4 Flashcards
what is html?
HyperText Markup Language defines the structure of a website semantically and the content that will be rendered by the web browser.
what is CSS?
Cascading Stylesheets deal with the presentation of content including aspects such as layout, formatting and colors.
what is Javascript ?
One of the most popular coding languages in the world, brings movement and user interaction to websites.
how do you denote HTML elements?
using opening and closing tags:
<p>This is an example of a paragraph element in HTML</p>
what is an attribute in HTML
Attributes receive values in double quotes. The src attribute provides a url to the image tag for the browser to get and render the proper image inside the HTML Element:
<img></img>
how do you create a link using an HTML element
you use what is called an anchor tag:
<a>App Academy</a>