Project Falcon

Definitions

This is just section that has definitions for some keywords we explore through the course.

<h2 id="children">Children</h2>

Children or child elements are directories or files that sit inside of another parent directory.

<h2 id="parent">Parent</h2>

Parent is a term that refers to directory that houses other directories and/or files. These directories and files are referred to as children.

<h2 id="relative-paths">Relative Paths</h2>

This is a way to refer to a file with it's relationship to the making the reference. For example, let's say you have a directory structure that looks like the following.

src
|-- index.html
|-- style.css

You can now make reference to your CSS file in your HTML with a tag that looks like the one below.

<link rel="stylesheet" href="./style.css" />
<h2 id="separation-of-concerns">Separation of Concerns</h2> <h2 id="siblings">Siblings</h2>

Siblings refer to any files that exist in the same directory referred to as the parent directory.

<h2 id="viewport">Viewport</h2>