Skip to content

Commit 1e61916

Browse files
committed
Completed slides for HTML lesson in Unit 2. Re-organized order of units.
1 parent f29b281 commit 1e61916

File tree

189 files changed

+425
-14
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+425
-14
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

02_html_and_rails/css/droid_serif.css

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@font-face {
2+
font-family: 'Droid Serif';
3+
font-style: normal;
4+
font-weight: 400;
5+
src: local('Droid Serif'), local('DroidSerif'), url(http://themes.googleusercontent.com/static/fonts/droidserif/v3/0AKsP294HTD-nvJgucYTaJ0EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@font-face {
2+
font-family: 'Yanone Kaffeesatz';
3+
font-style: normal;
4+
font-weight: 400;
5+
src: local('Yanone Kaffeesatz Regular'), local('YanoneKaffeesatz-Regular'), url(http://themes.googleusercontent.com/static/fonts/yanonekaffeesatz/v4/YDAoLskQQ5MOAgvHUQCcLbvy90DtE_Pg_qiF9bHvTzw.ttf) format('truetype');
6+
}
File renamed without changes.

02_html_and_rails/hello.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<html>
2+
<head>
3+
<title>Example</title>
4+
<style>
5+
.link {
6+
color: green;
7+
}
8+
</style>
9+
</head>
10+
<body>
11+
<h1>Hello, World!</h1>
12+
<img src="http://betamore.com/wp-content/uploads/2013/04/logo.png" />
13+
<ul>
14+
<li><a class="link" href="tables.html">Tables</a></li>
15+
<li><a class="link" href="forms.html">Forms</a></li>
16+
<li><a class="link" href="http://betamore.com">Betamore</a></li>
17+
</ul>
18+
</body>
19+
</html>

0 commit comments

Comments
 (0)