terms Flashcards
HTML
HTML provides the content structure and context. By describing the content, it tells the browser what to do with it. The current version of HTML is HTML5.
CSS
CSS tells the browser how to present the content. A set of styling rules lets the browser know how to render elements within the HTML document. The current version of CSS is CSS3.
JavaScript
JavaScript is a third component which is a programming language that provides the ability to create more powerful interactivity. It is the only programming language that can operate at both the front-end (client) and/or back-end (server).
HTML and CSS
Together HTML and CSS give the browser the information it needs to render the web page for the user while JavaScript can give the web page more interactivity. Website rendered output is content marked up with HTML and styled with CSS.
Client-side programming (front-end).
Client-side refers to the software that runs on a user’s web browser or user agent
Server-side programming (back-end)
Server-side means the systems that are on the server.
Web/Full-Stack Development
Full Stack Development is combining front-end and back-end skills.
User agent
A string that tells the site what operating system and browser the user is running
what are semantic tags
Semantic Tags are used in accessibility for the visually impaired
HTML Element.
An html element is a part of a webpage. In HTML, an element may contain a data item or a chunk of text or an image, or perhaps nothing. A typical element includes an opening tag with some attributes, enclosed text content, and a closing tag.