HTML

HTML

HTML

Result:

HTML

Linking to Other Sites

Example:

<p>Movie Reviews:
<ul>
<li><a href="http://www.empireonline.com">
 Empire</a></li>
 
<li><a href="http://www.metacritic.com">
Metacritic</a></li>

<li><a href="http://www.rottentomatoes.com">
Rotten Tomatoes</a></li>

<li><a href="http://www.variety.com">
Variety</a></li>

</ul>
</p>

HTML

HTML

CSS

CSS

Chapter 15: Layouts

Controlling the Position of Elements

CSS

CSS

Normal Flow

position:static

Relative positioning

position:relative

-You can indicate that an element should be relatively positioned using the position property with a value of relative.

Example:

CSS CSS

Absolute Positioning

position:absolute

Example:

CSS CSS

Fixed Width Layouts

CSS

Liquid Layouts

CSS

JavaScript

JS

Chapter 3: Functions, Methods, and Objects

Functions

Function

What is a function?

Declaring a function

Calling a Function

Calling a Function

Article Summary: Pair Programming

What is pair programming?

How does pair programming work?

  1. The Driver is the programmer who is typing and the only one whose hands are on the keyboard.

  2. The Navigator uses their words to guide the Driver but does not provide any direct input to the computer.

Why pair program?

  1. Greater efficiency: When two people focus on the same code base, it is easier to catch mistakes in the making.

  2. Engaged collaboration: When developers pair program, they rely more on each other and can often find a solution together without needing to ask for additional help. Ultimately, this boosts overall confidence.

  3. Learning from fellow students: Working with a teammate can expose developers to techniques they otherwise would not have thought of. If one developer has a unique approach to a specific problem, pair programming exposes the other developer to a new solution.

  4. Social skills: Pair programming not only improves programming skills, but can also help programmers develop their interpersonal skills. When just grabbing the keyboard and taking over isn’t an option, getting good at finding the right words is a skill unto itself.

  5. Job interview readiness: By pair programming between a current employee and an applicant, companies can get a better feel for how an applicant will fit into the team and their collaboration style.

  6. Work environment readiness: Many companies that utilize pair programing expect to train fresh hires from CS-degree programs on how they operate to actually deliver a product.

References:

Main page