Skip to content

Latest commit

 

History

History
69 lines (44 loc) · 4.29 KB

File metadata and controls

69 lines (44 loc) · 4.29 KB

Compose a short poem describing how HTTP sends data between computers.

In digital realms, HTTP sails, Data streams through its digital trails. From server's realm to distant lands, In packets small, it understands.

Headers guide its graceful flight, Requests sent with binary might. GET, POST, its language clear, Linking worlds, far and near.

Describe how HTML, CSS, and JS files are “parsed” in the browser.

Parsing of HTML, CSS, and JavaScript files (in that order) in the browser involves building and manipulating internal data structures (DOM, CSSOM), ultimately resulting in the rendering and interactivity of web pages.

How can you find images to add to a Website?

Find an image on google, use creative common license to prevent copyright violation. Enlarge it, then save it.

How do you create a String vs a Number in JavaScript?

Strings can be enclosed within single quotes (''), double quotes ("") or backticks (``). Numbers can be integers, floating-point numbers, or negative numbers.

What is a Variable and why are they important in JavaScript?

A variable is a container for storing data values. They're important for storing and manipulating information, providing flexibility, enabling code reuse, controlling program flow, managing scope, and passing parameters between functions.

What is an HTML attribute?

Attributes provide extra information about an element that can't be specified directly within the element's tag.

Describe the Anatomy of an HTMl element.

Opening Tag: ,Attributes: Name="value", Content: Text or nested elements, Closing Tag: .

What is the Difference between article and section element tags?

article is for standalone, complete content like blog posts or news articles. section is for grouping related content together within a document, providing a thematic division.

What Elements does a “typical” website include?

A typical website consists of essential elements: header (with logo and navigation), content area, sidebar, footer (with copyright and contact info), call-to-action prompts, search bar, social media links, contact information, About Us section, FAQs, site map, privacy policy/terms of service, and responsive design.

How does metadata influence Search Engine Optimization?

Metadata influences search engine optimization by providing search engines with relevant information about the content of a webpage. Optimizing metadata elements such as title tags, meta descriptions, URL structure, heading tags, and alt text can improve a page's visibility and ranking in search engine results.

How is the HTML tag used when specifying metadata?

The HTML tag is used to provide metadata about an HTML document. Metadata includes information such as character encoding, viewport settings for mobile devices, description, keywords, and authorship.

What is the first step to designing a Website?

The first step is to plan/ visualize.

What is the most important question to answer when designing a Website?

What exactly do I want to accomplish?

Why should you use an h1 element over a span element to display a top level heading?

Using an h1 element for a top-level heading is preferred over a span element due to aiding accessibility, SEO benefits, and ensuring consistency and maintainability in the codebase.

What are the benefits of using semantic tags in our HTML?

They improve accessibility by providing meaning and structure to content, making it easier for assistive technologies to interpret. Semantic tags also enhance search engine optimization (SEO) efforts, as they help search engines understand the relevance and hierarchy of content. Semantic tags improve code readability and maintainability by conveying the purpose of different elements clearly, promoting consistency across web pages, and ensuring compatibility with future technologies.

Describe 2 things that require JavaScript in the Browser?

JavaScript enables tasks such as form validation and creates dynamic, interactive content.

How can you add JavaScript to an HTML document?

JavaScript can be added to an HTML document either inline within HTML elements using event attributes, internally within script tags, or externally by linking to a separate JavaScript file with the script tag's src attribute.

Things I Want To Know More About