-
Notifications
You must be signed in to change notification settings - Fork 2
/
portfolio-item.php
47 lines (44 loc) · 1.68 KB
/
portfolio-item.php
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
<?php include("header.php");?>
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css">
<!-- Page Title -->
<div class="section section-breadcrumbs" style="padding-top:50px;">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 style="font-variant:small-caps;">Faculty <span style="color:#5D8FCB;">Details</span></h1>
</div>
</div>
</div>
</div>
<div class="section">
<div class="container">
<div class="row">
<!-- Product Image & Available Colors -->
<div class="col-sm-6">
<div class="product-image-large">
<img src="assets/img/portfolio/khyati.jpg" alt="Khyati Ahlawat" class="img-responsive">
</div>
<div class="colors">
<span class="color-white"></span>
<span class="color-black"></span>
<span class="color-blue"></span>
<span class="color-orange"></span>
<span class="color-green"></span>
</div>
</div>
<!-- End Product Image & Available Colors -->
<!-- Product Summary & Options -->
<div class="col-sm-6 product-details">
<h3>Faculty <span style="color:#5D8FCB;">Details</span></h3>
<p><strong>Name: </strong>Khyati Ahlawat</p>
<p><strong>Email: </strong>[email protected]</p>
<p><strong>Institute: </strong>USICT</p>
<p><strong>Qualification:</strong>xyz</p>
<p><strong>Experience:</strong>4</p>
</div>
<!-- End Product Summary & Options -->
</div>
</div>
</div>
<!--/Page title-->
<?php include ("footer.php");?>