Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions Introduction to HTML/Lesson 4/grid layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>

<head>
<title>PHOTO BLOG</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:400,800" rel="stylesheet">
<style>
img {
width: 30%;
float: left;
margin: 1.66%;
}

h1 {
margin-left: 1.66%;
font-family: Raleway;
border-bottom: 3px solid #F1F1F1;
width: 30%;
padding-bottom: 30px;
}
</style>
</head>

<body>

<h1>PHOTO BLOG</h1>

<img src="http://c1.staticflickr.com/9/8450/8026519634_f33f3724ea_b.jpg">
<img src="http://c2.staticflickr.com/8/7218/7209301894_c99d3a33c2_h.jpg">
<img src="http://c2.staticflickr.com/8/7231/6947093326_df216540ff_b.jpg">
<img src=" http://c1.staticflickr.com/9/8788/17367410309_78abb9e5b6_b.jpg">
<img src=" http://c2.staticflickr.com/6/5814/20700286354_762c19bd3b_b.jpg">
<img src=" http://c2.staticflickr.com/6/5647/21137202535_404bf25729_b.jpg">
<img src=" http://c2.staticflickr.com/6/5588/14991687545_5c8e1a2e86_b.jpg">
<img src=" http://c2.staticflickr.com/4/3888/14878097108_5997041006_b.jpg">
<img src=" http://c2.staticflickr.com/8/7579/15482110477_0b0e9e5421_b.jpg">


</body>

</html>