-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
80 lines (61 loc) · 3.08 KB
/
about.php
File metadata and controls
80 lines (61 loc) · 3.08 KB
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
<?php
require_once("config.php");
?>
<!DOCTYPE html>
<html lang="en">
<?php include(ROOT_PATH.'/layout/header.php'); ?>
<?php include(ROOT_PATH.'/layout/navbar.php'); ?>
<!-- Home Section -->
<section id="home" class="main-about parallax-section">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<h1>About Me</h1>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-md-offset-1 col-md-10 col-sm-12">
<div class="col-md-8 col-sm-8">
<h3>Omar KADISH - PHP Web Developer</h3>
<p>Back-End Web Developer with abundant server-side web development knowledge and seeking to broaden this
knowledge along with database engineering.<br>
Hard-working listing programmer with a passion for creating elegant solutions in the least amount of time.<br>
Adaptable and always ready for working cooperatively with the team and aiming to improve the knowledge in these
fields.</p>
</div>
<div class="col-md-4 col-sm-4">
<img src="images/about-image.jpg" class="img-responsive" alt="About Image">
</div>
<div class="clearfix"></div>
<div class="col-md-12 col-sm-12">
<h2>My Resume</h2>
<p><b>Click <a href="./resume.pdf" download="Omar's Resume">Here</a> to download PDF</b>
</p>
</div>
<!-- <div class="clearfix"></div>
<div class="col-md-4 col-sm-4">
<img src="images/about-image1.jpg" class="img-responsive" alt="Blog Image">
<h3>Section One</h3>
<p>Pellentesque lobortis velit mi, sed volutpat enim facilisis at. Maecenas quis pulvinar neque, non dapibus orci.</p>
</div>
<div class="col-md-4 col-sm-4">
<img src="images/about-image2.jpg" class="img-responsive" alt="Blog Image">
<h3>Section Two</h3>
<p>Pellentesque lobortis velit mi, sed volutpat enim facilisis at. Maecenas quis pulvinar neque, non dapibus orci.</p>
</div>
<div class="col-md-4 col-sm-4">
<img src="images/about-image3.jpg" class="img-responsive" alt="Blog Image">
<h3>Section Three</h3>
<p>Pellentesque lobortis velit mi, sed volutpat enim facilisis at. Maecenas quis pulvinar neque, non dapibus orci.</p>
</div> -->
</div>
</div>
</div>
</section>
<?php include(ROOT_PATH.'/layout/footer.php'); ?>