-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCSS-in-class-grid-layout.html
More file actions
67 lines (62 loc) · 2.2 KB
/
Copy pathCSS-in-class-grid-layout.html
File metadata and controls
67 lines (62 loc) · 2.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Felines in a Grid</title>
<link rel="stylesheet" type="text/css" href="grid-style.css">
</head>
<body>
<header>
<h2 id="site-title">Felines in a Grid</h2>
<nav id="navigation">
<a class="nav-button" href="#">Home</a>
<a class="nav-button" href="#">Lifestyle</a>
<a class="nav-button" href="#">Exclusives</a>
<a class="nav-button" href="#last-cat">Bubbles</a>
</nav>
</header>
<div class="other-news-container">
<h3>In Other News</h3>
<div class="other-news-item">
<img src="http://2.bp.blogspot.com/-41v6n3Vaf5s/UeRN_XJ0keI/AAAAAAAAN2Y/YxIHhddGiaw/s1600/css.gif">
</div>
<div class="other-news-item">
<img src="http://cdn.meme.am/instances/59066896.jpg">
</div>
<div class="other-news-item">
<img src="http://img.pandawhale.com/55831-WHY-MUST-LIFE-BE-SO-HARD-Homer-3HZt.gif">
</div>
</div>
<div class="main-container">
<h3>Our Finest Felines</h3>
<div class="ib-grid-item">
<img alt="Steve" src="https://pbs.twimg.com/profile_images/424484505915621376/EOwsjaMZ_400x400.png" alt="Felix the cat">
<p>Steve</p>
</div>
<div class="ib-grid-item">
<img alt="Dr. Franklin" src="https://pbs.twimg.com/profile_images/447460759329460224/mt2UmwGG_400x400.jpeg">
<p>Dr. Franklin</p>
</div>
<div class="ib-grid-item">
<img alt="Mr. Lickums" src="http://2.bp.blogspot.com/_ckBlasgNSzg/SkV9fcHlE6I/AAAAAAAAM6s/qoUNISk_YpQ/s400/Cat+Bowling.jpg">
<p>Mr. Lickums</p>
</div>
<div class="ib-grid-item">
<img alt="Roxanne" src="http://www.our-happy-cat.com/images/cat-drinking-from-tap.jpg">
<p>Roxanne</p>
</div>
<div class="ib-grid-item">
<img alt="Felix" src="http://www.portraits-online.com/uploads/1/3/5/2/13522906/2607694_orig.jpg">
<p>Felix</p>
</div>
<div class="ib-grid-item" id="last-cat">
<img alt="Bubbles" src="https://pbs.twimg.com/profile_images/616542814319415296/McCTpH_E.jpg">
<p>Bubbles</p>
</div>
</div>
<footer>
<a href="#navigation">Back to top</a>
<span> | © Felines in a Grid 2016. All rights reserved.</span>
</footer>
</body>
</html>