Skip to content

Commit

Permalink
Added examples from slides
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-campos committed Aug 4, 2016
1 parent 23cf093 commit 38575ae
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
35 changes: 35 additions & 0 deletions slides-examples/kitty.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<html>
<head>
<style>
body {
font-family: 'Helvetica';
text-align: center;
}

h1 {
font-size: 24px;
color: #DDDDDD;
background-color: #333333;
padding: 10px 0;
width: 400px;
}

.kitty-paragraph {
color: #333333;
width: 400px;
border-bottom: 1px solid #999999;
}

img {
margin-top: 10px;
}
</style>
</head>
<body>
<h1>Kitty title</h1>
<p class="kitty-paragraph">
This is a paragraph with an image inside
<img src="images/kitty.jpg">
</p>
</body>
</html>
9 changes: 9 additions & 0 deletions slides-examples/puppy.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<html>
<body>
<h1>My title</h1>
<p>
This is a paragraph with a image inside
<img src="images/puppy.jpg">
</p>
</body>
</html>

0 comments on commit 38575ae

Please sign in to comment.