-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweek2.html
65 lines (58 loc) · 1.68 KB
/
week2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS - CTYI Web Design 2018</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Press+Start+2P" rel="stylesheet">
<link rel="stylesheet" href="css/menu.css">
<style>
h1, h2, h3{
font-family: 'Press Start 2P', cursive;
color: firebrick;
}
body{
font-family: 'Open Sans', sans-serif;
}
.container{
width: 90%;
margin: auto;
}
</style>
</head>
<body>
<div class="container">
<ul>
<li><a href="index.html">HTML</a></li>
<li><a class="active" href="week2.html">CSS</a></li>
<li><a href="week3.html">Menus</a></li>
<li><a href="week4.html">Javascript</a></li>
</ul>
<h3>Cascading Style Sheets</h3>
Lesson 2a: <a href="https://codepen.io/domhnall/pen/oEbrNP?editors=1100#0" target="_blank">
Websites with style
</a>
<br/>
<iframe width="560" height="315" src="https://www.youtube.com/embed/QUhI5V9YGsw" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
<br/>
Lesson 2b: <a href="https://codepen.io/domhnall/pen/GQWeQv?editors=1000#0" target="_blank">
Font Awesome
</a>
To help you get started with font Awesome check out their cheatsheet below:
<br>
<a href="http://fontawesome.com/cheatsheet" target="_blank">
<img src="img/fa_logo.png" alt="">
</a>
<h3>Coding Challenge</h3>
<p>
This week your pair programming assignment is to build a website for Kahoot! Your website should make use of the following:
</p>
<p>
~ CSS Colours <br/>
~ Custom Fonts <br/>
</p>
<h3> Coding Games </h3>
<p>
Practice your CSS skills by trying the <a href="http://flexboxfroggy.com/" target="_blank">Flexbox Froggy</a> game.
</p>
</body>
</html>