forked from txcsmad/f16-beginner-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
65 lines (65 loc) · 2.66 KB
/
home.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>
<head>
<meta charset="utf-8">
<title>Intro to Web Dev</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link href="https://fonts.googleapis.com/css?family=Fira+Mono" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:400,700|Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="custom.css">
</head>
<body>
<div id="app" class="container">
<div class="title-flex-container">
<img class="title-mad-logo" src="images/mad_m.png">
<h1 style="margin-bottom: 0;">Intro to Web Development</h1>
</div>
<section style="margin: 0; margin-top: 1%;">
<h5 style="margin: 0;">Workshops</h5>
<!--<h6 style="margin: 0; margin-left: 0.1%; margin-top: -3px; letter-spacing: 0.6px;">Weekly Lessons</h6>-->
<div class="card-container">
<div>
<img src="http://bulbulcse.com/wp-content/uploads/2016/06/c.png" height="150px">
<h5 class="subtitle">Week 1</h5>
<h5 style="margin: 0; margin-left: 2px;">Intro to Web</h5>
</div>
<div>
<img src="https://mightybuddy.files.wordpress.com/2013/03/hash1.png?w=500">
<h5 class="subtitle">Week 2</h5>
<h5 style="margin: 0; margin-left: 2px;">Object Oriented JS</h5>
</div>
<div>
<img src="http://kylefdoherty.github.io/images/js_function_anatomy.png" width="250px">
<h5 class="subtitle">Week 3</h5>
<h5 style="margin: 0; margin-left: 2px;">Functions in JS</h5>
</div>
<div style="display: none;">
<img src="http://upcity.com/wp-content/uploads/2015/07/html-css-js-logos.png">
<h5 class="subtitle">Week 4</h5>
<h5 style="margin: 0; margin-left: 2px;">Basic CSS</h5>
</div>
</div>
</section>
<section style="margin: 0; margin-top: 1%;">
<h5 style="margin: 0;">Special Topics</h5>
<!--<h6 style="margin: 0; margin-left: 0.1%; margin-top: -3px; letter-spacing: 0.6px;">Standalone Lessons</h6>-->
<div class="card-container">
<div>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Client-server-model.svg/500px-Client-server-model.svg.png" height="150px">
<h5 class="subtitle">Hack TX</h5>
<h5 style="margin: 0; margin-left: 2px;">How to use APIs</h5>
</div>
<div>
<img src="https://mightybuddy.files.wordpress.com/2013/03/hash1.png?w=500">
<h5 class="subtitle">Hack TX</h5>
<h5 style="margin: 0; margin-left: 2px;">Single Page Apps</h5>
</div>
</div>
</section>
</div>
</body>
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<script src="components.js"></script>
<script src="home.js"></script>
</html>