-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-item.html
154 lines (139 loc) · 6.01 KB
/
product-item.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>com:Phanny - Products</title>
<link rel="stylesheet" href="./styles/styles.css">
<link rel="stylesheet" href="./vendor/fontawesome/css/all.min.css">
<link rel="shortcut icon" href="./images/logo/comphanny-icon-color.png" type="image/png">
</head>
<body id="top">
<nav class="navbar sticky-top navbar-expand-lg navbar-dark bg-cphy-primary shadow-sm">
<a class="navbar-brand" href="./">
<i class="fas fa-elephant" style="width:-100%;"></i>
com:Phanny
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="./">
<i class="fas fa-home fa-fw"></i> Home <span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./product-list.html">
<i class="fas fa-box fa-fw"></i> Products
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./about.html">
<i class="fas fa-elephant fa-fw"></i> About
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">
<i class="fas fa-phone"></i> Contact
</a>
</li>
</ul>
</div>
</nav>
<main>
<nav aria-label="breadcrumb">
<ol class="breadcrumb bg-cphy-primary-xlight">
<li class="breadcrumb-item"><a href="./"><i class="fal fa-elephant"></i></a></li>
<li class="breadcrumb-item"><a href="./product-list.html">Products</a></li>
<li class="breadcrumb-item active" aria-current="page">Social App</li>
</ol>
</nav>
<section class="container my-5">
<div class="mb-3 d-flex justify-content-center align-items-center">
<div class="text-center">
<h2 class="section-heading">Social App</h2>
<p class="text-italic text-muted">01 Feb 2019</p>
</div>
</div>
<div>
<span class="badge badge-cphy-primary-xlight"><i class="fal fa-mobile"></i> Mobile App</span>
<span class="badge badge-cphy-primary-xlight"><i class="fal fa-cloud"></i> Web Service</span>
</div>
<!-- Content Templates -->
<!-- Banner -->
<img class="img-fluid shadow-sm mb-3" src="./images/bg-landing.png" alt="product image">
<!-- Tech Stack -->
<div class="card border-0 bg-light-gray shadow-sm mb-3">
<div class="card-body">
<h5 class="card-title">Tech Stack</h5>
<ul>
<li>Item one</li>
<li>Item two</li>
<li>Item three</li>
</ul>
</div>
</div>
<!-- Blockquote -->
<blockquote class="blockquote blockquote-gray shadow-sm mb-3">
<h5 class="blockquote-heading">Blockquote</h5>
<p>Awesome website!</p>
<p class="blockquote-footer">2019</p>
</blockquote>
<!-- Customizable HTML Content -->
<div class="mb-3">
<h5>Customizable HTML Content</h5>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Assumenda porro voluptatum natus expedita vitae nisi cum? Fugit eius nam tempora fuga error harum animi at. Pariatur sit non adipisci tenetur?</p>
</div>
<!-- Card -->
<div class="card bg-light border-light-gray shadow-sm mb-3">
<div class="card-body">
<h5 class="card-title">Card</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
<!-- Image Card -->
<div class="card bg-light border-light-gray shadow-sm mb-3">
<div class="row no-gutters">
<div class="col-md-4">
<img src="./images/bg-landing.png" class="card-img" alt="Placeholder">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Image Card</h5>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="container-fluid bg-dark text-light px-3 py-3">
<div class="text-center">
<h6 class="text-weight-normal text-italic">Need a <span class="text-cphy-secondary-light">digital product</span>?</h6>
<p><a href="./contact.html" class="text-cphy-secondary">Contact us</a> at:<br>
<span itemprop="email">comphanny@example.com</span><br>
<span itemprop="telephone">+65 1234 5678</span>
</p>
<address itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
Find us at:<br>
<span itemprop="streetAddress">8030 Paddocks Mill Dr</span><br>
<span itemprop="addressLocality">Cumming</span>, Georgia(<span itemprop="addressRegion">GA</span>), <span itemprop="postalCode">30041</span>
</address>
</div>
<p class="text-center text-muted text-italic small">Handcrafted by Davina Leong</p>
<p class="text-center text-muted text-italic small">Note: com:Phanny is <strong>NOT</strong> a real company.</p>
</footer>
<a class="btn btn-cphy-secondary btn-floating-action shadow-sm" href="#top">
<i class="fa fa-angle-up fa-2x"></i>
</a>
<a class="text-cphy-primary-light github-fab" href="https://github.com/DavinaLeong/proj-comphaanyy-template">
<i class="fab fa-github fa-3x"></i>
</a>
<script src="./vendor/jquery.min.js"></script>
<script src="./vendor/popper.min.js"></script>
<script src="./vendor/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>