-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
101 lines (100 loc) · 4.97 KB
/
gallery.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="jewelry-gallery">
<meta name="author" content="Bema Taalaibekova">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Dancing+Script|Great+Vibes|Noto+Serif|Open+Sans|Quicksand" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/gallery.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<title>Document</title>
</head>
<body>
<header> <!--------------------------------NAV BAR------------------------------------>
<nav class="nav-bar">
<a href="index.html" target="_blank">
<img src="images/logo2.png" alt="logo" class="logo"/>
</a>
<ul class="nav-list">
<li class="list-item"><a href="index.html" target="_blank">Home</a></li>
<li class="list-item"><a href="gallery.html" target="_blank">Gallery</a></li>
<li class="list-item"><a href="about.html" target="_blank">About</a></li>
<li class="list-item"><a href="contact.html" target="_blank">Contact</a></li>
</ul>
</nav>
</header>
<aside class="side-nav"><!------------------Sidebar----------------------->
<ul class="nav-list2">
<li class="nav-item"><a href="index.html" target="_blank">Home</a></li>
<li class="nav-item"><a href="gallery.html" target="_blank">Gallery</a></li>
<li class="nav-item"><a href="about.html" target="_blank">About</a></li>
<li class="nav-item"><a href="contact.html" target="_blank">Contact</a></li>
</ul>
</aside>
<section class="gallery-main">
<div class="gallery item1">
<p class="description1">Sterling silver earrings with natural lapus</p>
</div>
<div class="gallery item2">
<p class="description1">Sterling silver earrings with mother pearl</p>
</div>
<div class="gallery item3">
<p class="description1">Sterling silver earrings with coral stones</p>
</div>
<div class="gallery item4">
<p class="description">Sterling silver earrings with natural turqoise</p>
</div>
<div class="gallery item5">
<p class="description">Sterling silver earrings with natural lapus</p>
</div>
<div class="gallery item6">
<p class="description">Sterling silver earrings with malachite stones</p>
</div>
<div class="gallery item7">
<p class="description">Sterling silver earrings with coral stones</p>
</div>
<div class="gallery item8">
<p class="description">Mayan calendar sterling silver bracelet </p>
</div>
<div class="gallery item9">
<p class="description">Sterling silver earrings with natural turqoise</p>
</div>
<div class="gallery item10">
<p class="description">Sterling silver earrings with coral stones</p>
</div>
<div class="gallery item11">
<p class="description">Sterling silver earrings with natural lapus</p>
</div>
<div class="gallery item12">
<p class="description">Sterling silver earrings with coral stones</p>
</div>
<div class="gallery item13">
<p class="description">Sterling silver pendant with natural mother pearl</p>
</div>
<div class="gallery item14">
<p class="description">Sterling silver pendant with natural coral stones</p>
</div>
<div class="gallery item15">
<p class="description">Sterling silver pendant with natural malachite stones</p>
</div>
</section>
<footer class="footer"><!--------------------FOOTER------------------------------------->
<div class="input footer-col">
<input type="text" placeholder="Email" class="email"/>
<button class="button" type="Submit">Submit</button>
</div>
<div class="social footer-col">
<a href="https://www.facebook.com/shopaizala/" target="_blank"><i class="fab fa-facebook-square fa-3x"></i></i></a>
<a href="https://www.instagram.com/aizalajewelry/" target="_blank"><i class="fab fa-instagram fa-3x"></i></a>
<a href="https://www.etsy.com/shop/SOLASTAGoods?ref=l2-shopheader-name" target="_blank"><i class="fab fa-etsy fa-3x"></i></a>
</div>
<div class="copyright footer-col">
<p class="copyright-text">© 2018 Begaiym Taalaibekova. All rights reserved</p>
<a href="privacy.html" target="_blank"><p class="privacy">Privacy</p></a>
</div>
</footer>
</body>
</html>