HTML, CSS, Bootstrap, JavaScript Flashcards
What is HTML?
Hyper Text Markup Language, used to define how a web page is laid out using tags.
What is CSS?
Cascading Style Sheet which defines how elements will look on the web page.
How can CSS be applied?
- External - In a separate file that’s linked.
- Internal - At the top of the document in style tags.
- Inline - as an attribute on the elements themselves.
What is iFrame?
- An HTML document embedded inside another HTML document on a website.
- The IFrame element is used to insert content from another source, like an ad on a web page.
What is DOM?
Document Object Model, represents the html page structure as nodes and objects.
What is Bootstrap?
A front-end, open source toolkit used to speed up development with HTML, CSS, and JavaScript.
Built for mobile first web-development using a grid system.
What are Meta Tags?
- Provide metadata about the HTML document.
- Metadata will not be displayed on the page, but will be machine parsable.
- Meta elements are typically used to specify page description, keywords, author of the document, last modified, and other metadata
What is ASCII?
- American standard code information interchange
- A character encoding standard for electric communication.
What is UTF-8?
- Unicode Transformation Format
- 8 means it uses 8 bit blocks to represent a character
- A character encoding that can contain any unicode characters
What tag would you use to create tables?
- The table tag
- Th is table head
- Tr is table row
- Td is table data (column data)
What are the types of lists?
- Ordered list
- Ol
- li
- Unordered list
- Ul
- li
- Description list
- Dl
- Dt
- Dd
What does attribute “required” do?
Used on input to specify that it must be filled out for the form to submit.
What does attribute ‘target=”_blank”’ do?
- Anchor links may have the target attribute which controls what happens when the anchor is clicked.
- If the target is _blank this tells the browser to open a new window (or tab depending on user settings) when the link is clicked.
JavaScript and AJAX
- JavaScript is an object oriented interpreted scripting language
-Used on web pages for DOM manipulation to make
the pages more interactive. - AJAX stands for Asynchronous JavaScript and XML.
- A new technique for creating better, faster, and more interactive web applications using XML, HTML, CSS, and JavaScript
Is JavaScript loosely typed or strict typed?
JavaScript is loosely typed you don’t declare the data types of variables explicitly.