Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed study_group/Typography Topics.docx
Binary file not shown.
16 changes: 16 additions & 0 deletions study_group/sgXX_070718/code_reference/1.base/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Typography Study Group</title>
<link rel="stylesheet" href="style.css" />
</head>

<body>
<div>

</div>
</body>
</html>
Empty file.
23 changes: 23 additions & 0 deletions study_group/sgXX_070718/code_reference/2.heading_and_p/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Typography Study Group</title>
<link rel="stylesheet" href="style.css" />
</head>

<body>
<main>
<h1>Hello World!</h1>
<h2>Hello World!</h2>
<h3>Hello World!</h3>
<h4>Hello World!</h4>
<h5>Hello World!</h5>
<h6>Hello World!</h6>
<p>Hello World!</p>
<span>Hello World!</span>
</main>
</body>
</html>
16 changes: 16 additions & 0 deletions study_group/sgXX_070718/code_reference/2.heading_and_p/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
* {
box-sizing: border-box;
}

body {
margin: 0;
}

main{
background: linear-gradient(#007A7C -100%, #ffffff);
padding: 50px;
}

h1 {
margin-top: 0;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Typography Study Group</title>
<link rel="stylesheet" href="style.css" />
</head>

<body>
<main>
<h1>HTML Formatting Elements</h1>

<div>
<b>The text is bold.</b>
<strong>The text is strong.</strong> <br><br>
<i>The text is italicized...</i>
<em>The text is emphasized...</em>
<h3>The <small>word</small> is small.</h3>
<p>The <mark>word</mark> is marked.</p>
<p>My favorite color is <del>blue</del> teal.</p>
<p>I have a <ins>pet</ins> dog.</p>
<p>This is a <sub>subscripted</sub> text.</p>
<p>This is a <sup>superscripted</sup> text.</p>
</div>

<hr>
<div>
<h2>Tell This One Out Loud!</h2>
<h4>Play with the riddle using HTML Formatting Elements.</h4>

One (k)night, a king and a queen went into a castle. There was no one in the castle when they went in, and no one else entered the castle while they were there. The next day, three people came out of the castle. Who were they?

</div>

</main>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
* {
box-sizing: border-box;
}

body {
margin: 0;
}

main {
background: linear-gradient(#007A7C -100%, #ffffff);
padding: 50px;
}

main div {
width: 80%;
padding-top: 50px;
margin: 0 auto;
}

h1 {
margin-top: 0;
}
19 changes: 19 additions & 0 deletions study_group/sgXX_070718/code_reference/4.styling_texts/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Typography Study Group</title>
<link href="https://fonts.googleapis.com/css?family=Galada|Open+Sans:300,400,700,800" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
</head>

<body>
<main>
<div>

</div>
</main>
</body>
</html>
12 changes: 12 additions & 0 deletions study_group/sgXX_070718/code_reference/4.styling_texts/sample.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
body {
font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Galada', cursive;
}
22 changes: 22 additions & 0 deletions study_group/sgXX_070718/code_reference/4.styling_texts/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
* {
box-sizing: border-box;
}

body {
margin: 0;
}

main {
background: linear-gradient(#007A7C -100%, #ffffff);
padding: 50px;
}

main div {
width: 80%;
padding-top: 50px;
margin: 0 auto;
}

h1 {
margin-top: 0;
}