-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtile.html
94 lines (86 loc) · 4.54 KB
/
tile.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
<!DOCTYPE html>
<html lang = "en">
<head>
<link rel="icon" href="favicon(1).ico">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Adams Brothers Pools | Materials | Tile</title>
<link rel = "stylesheet" type = "text/css" href = "css/style.css">
<link rel = "stylesheet" type = "text/css" href = "css/materials.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
</head>
<body>
<header id = "top">
<div class = "top-row-wrapper">
<p id = "serving">Serving Southern California Since 1981</p>
<a href = "index.html"><img id = "logo" src = "adams_logo.png" alt = "logo"></a>
<p id = "start">Start Your Project Today!
<a href = "contact.php" >FREE ESTIMATE</a>
</p>
<img src = "menu_icon.png" id = "menu-icon" onclick = "toggleMenu()">
</div>
<nav id = "navbar">
<ul id = "menuList">
<li><a href = "index.html">HOME</a></li>
<li class = "dropdown-button"><a href = "#">GALLERY <span>◢</span></a>
<ul class = "dropdown">
<li><a href= "g_newpools.html">NEW POOLS</a></li>
<li><a href = "g_remodels.html">REMODELS</a></li>
<li><a href = "g_coping.html">TILE&COPING</a></li>
<li><a href = "g_decking.html">DECKING</a></li>
<li><a href = "g_3d.html">3D PROJECT DESIGNS</a></li>
<li><a href = "g_miscellaneous.html">MISCELLANEOUS</a></li>
</ul>
</li>
<li class = "dropdown-button"><a href = "#" >MATERIALS <span>◢</span></a>
<ul class = "dropdown">
<li><a href= "tile.html">TILE</a></li>
<li><a href = "coping.html">COPING</a></li>
<li><a href = "decking.html">DECKING</a></li>
<li><a href = "pebble.html">PEBBLE</a></li>
<li><a href = "turf.html">TURF</a></li>
</ul>
</li>
<li><a href = "contact.php">CONTACT US</a></li>
<li><a href = "about.html">ABOUT</a></li>
</ul>
</nav>
</header>
<main>
<div class = "first-section-wrapper">
<h2 class = "page-title"> TILE </h2>
</div>
<div class = "content-wrapper">
<div class = "link-wrapper">
<div class = "supplier">
<a href = "https://view.flipdocs.com/?ID=10007320_820046" target = "_blank"><img src = "supplier_images/npt-logo.svg"></a>
<p>4980 E Landon Dr, Anaheim, CA 92807</p>
</div>
<div class = "supplier">
<a href = "https://www.fujiwatiles.com/" target = "_blank"><img src = "supplier_images/fujiwa-logo.png"></a>
<p>1804 Lemon St, Anaheim, CA 92801</p>
</div>
<div class = "supplier">
<a href = "https://www.aquabellatile.com/?gclid=EAIaIQobChMI3dOl_d_k8wIVDOTICh1FawMLEAAYASAAEgL26fD_BwE" target = "_blank"><img src = "supplier_images/aquabella.png"></a>
<p>4950 E Hunter Ave, Anaheim, CA 92807</p>
</div>
</div>
<div class = "img-wrapper">
<img src = "materials/tile/tile1.JPEG">
<img src = "materials/tile/tile2.JPG">
<img src = "materials/tile/tile3.JPG">
<img src = "materials/tile/tile4.JPG">
</div>
<div class = "more">
<p>For more photos, check out the gallery!</p>
<a id = "gallery-button" href = "g_coping.html">View Tile & Coping Gallery</a>
</div>
</div>
</main>
<footer>
<a href = "#top"> ↑ </a>
<p id = "rights">Adams Brothers Pools -All rights reserved @2021</p>
</footer>
<script src = "js/menu.js" type = "text/javascript"></script>
</body>
</html>