Colt Steele
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body{ | |
text-align: center; | |
background: url("http://dash.ga.co/assets/anna-bg.png"); | |
background-size: cover; | |
background-position: center; | |
color: white; | |
font-family: helvetica; | |
} | |
p{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Example 9</title> | |
<style> | |
body { | |
margin: 0; | |
font: normal 12px/18px 'Helvetica', Arial, sans-serif; | |
background: #44accf; | |
} |
#Sunday Notes and Resources
Agenda:
- Selectors Review
- Google Fonts
- Personal Site Example
margin: 0; and margin: 0 auto
- Positioning
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="cookie_styles.css"> | |
<title></title> | |
</head> | |
<body> | |
<h1>hello this is an h1!! <a href="http://www.google.com">Go To Google </a> | |
</h1> |
#SORTS
- Selection Sort: This algorithm works by examining a contiguous sublist of the original list. It finds the nth largest element in the list and swaps it with the nth element. It then examines n-1 terms. Selection sort runs in Θ(n2) time for worst, bets, and average case scenarios.
- Bubblesort: This algorithm works by swapping consecutive elements that are unordered. It ex- amines two consecutive elements at a time. Bubblesort terminates when it completes an iteration through the list without swapping any elements. It runs in O(n2) time for average and worst cases, and O(n) time if the list is already sorted.
- Insertion Sort: This algorithm works by examining a larger contiguous subset of the original list on each iteration. On the first iteration, only elements at indices 0-1 are examined. If they are out of order, they are swapped. On the next iteration, elements at indices 0-2 are examined. The element at index 2 is pulled out of the list and compared against the preceding one-by-one while it is bi