-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
58 lines (54 loc) · 2.25 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quilt Gallery</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Satisfy&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Satisfy&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header style="display: grid; grid-template-columns: auto auto;">
<div name="header-title"><h1 style="color: #50364A; ">Quilted Whimsy</h1></div><div><img src="images/caramel_logo.png" height="200px"></div>
</header>
<nav>
<hr>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<hr>
</nav>
<ol class="breadcrumb">
<li><a href="">Home</a></li>
<li>Gallery</li>
</ol>
<section class="intro">
<h1>Quilt Gallery</h1>
<p>Here are a few of the quilts that my friends and I have made, as well as ones that inspire me.</p>
</section>
<section class="quilt-gallery">
<div class="quilt-pic">
<img src="images\quilt1-pixabay.jpg">
<h2>Title of Quilt 1</h2>
<p class="artist">by Jane Doe</p>
</div>
<div class="quilt-pic">
<img src="images\quilt2-pixabay.jpg">
<h2>Title of Quilt 2</h2>
<p class="artist">by Jane Doe</p>
</div>
<div class="quilt-pic">
<img src="images\quilt3-pixabay.jpg">
<h2>Title of Quilt 3</h2>
<p class="artist">by Jane Doe</p>
</div>
</section>
</body>
</html>