-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (100 loc) · 4.08 KB
/
index.html
File metadata and controls
112 lines (100 loc) · 4.08 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Coding Crew</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/skeleton.css">
<link rel="stylesheet" href="./css/main.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="./images/favicon.png">
<style>
/*We can remove this later, but testing for now*/
html,
body {
height: 100%;
margin: 0;
}
.wrapper {
min-height: 100%;
/* Equal to height of footer */
/* But also accounting for potential margin-bottom of last child */
margin-bottom: -50px;
}
.footer,
.push {
height: 50px;
}
div.iframe-link {
position: relative;
float: left;
width: 100%;
height: 516px;
margin: 0 1em 1em 0;
}
a.iframe-link {
text-decoration: none;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 516px;
}
</style>
</head>
<body>
<div class="wrapper">
<div style="background-color:#7DC4F0;">
<div class="container">
<div class="row">
<div class="offset-by-one-third one-half column" style="margin-top: 10%;" id="mainpagetitle">
<h1>The Coding Crew</h1>
</div>
</div>
<div class="row">
<div class="offset-by-one one-half column" style=" margin-top:15%;margin-bottom: 35%">
<p>"I like coding because it lets me make my own applications and programs. Plus its fun!" - HittmanA</p>
</div>
</div>
</div>
</div>
<div style="background-color:white;">
<div class="container">
<div class="row">
<div class="one-half column" style="">
<h4>About Us</h4>
<p>The coding crew is a group of developers that makes tutorial videos for technical things such as creating a website and posts them on YouTube.</p>
</div>
</div>
</div>
</div>
<div style="background-color:white;">
<div class="container">
<div class="row">
<div class="column">
<h4>Our Tutorials</h4>
<p>We have tutorials for learning HTML and hopefully more in the future!</p>
</div>
</div>
</div>
</div>
<div class="push"></div>
</div>
<footer class="footer"> Copyright The Coding Crew <script>new Date().getFullYear()>2010&&document.write(new Date().getFullYear());</script></footer>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>