-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
93 lines (74 loc) · 3.35 KB
/
about.php
File metadata and controls
93 lines (74 loc) · 3.35 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
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php include ('include_page/config.php'); ?>
<!DOCTYPE html>
<html lang="en">
<!-- Header -->
<?php include ('include_page/header.php'); ?>
<body>
<!-- Navigation Bar -->
<?php include ('include_page/navbar.php'); ?>
<!-- +++++ Welcome Section +++++ -->
<div id="ww">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 centered">
<img src="assets/img/user.png" alt="Stanley">
<h1>About Stanley!</h1>
<p>Hello everybody. I'm Stanley, a free handsome bootstrap theme coded by BlackTie.co. A really simple theme for those wanting to showcase their work with a cute & clean style.</p>
<p>Please, consider to register to <a href="http://eepurl.com/IcgkX">our newsletter</a> to be updated with our latest themes and freebies. Like always, you can use this theme in any project freely. Share it with your friends.</p>
</div><!-- /col-lg-8 -->
</div><!-- /row -->
</div> <!-- /container -->
</div><!-- /ww -->
<!-- +++++ Information Section +++++ -->
<div class="container pt">
<div class="row mt centered">
<div class="col-lg-3">
<span class="glyphicon glyphicon-book"></span>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<div class="col-lg-3">
<span class="glyphicon glyphicon-user"></span>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<div class="col-lg-3">
<span class="glyphicon glyphicon-fire"></span>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<div class="col-lg-3">
<span class="glyphicon glyphicon-globe"></span>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div><!-- /row -->
<div class="row mt">
<div class="col-lg-6">
<h4>THE THINKING</h4>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source.</p>
</div><!-- /colg-lg-6 -->
<div class="col-lg-6">
<h4>THE SKILLS</h4>
Wordpress
<div class="progress">
<div class="progress-bar progress-bar-theme" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">60% Complete</span>
</div>
</div>
Photoshop
<div class="progress">
<div class="progress-bar progress-bar-theme" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">80% Complete</span>
</div>
</div>
HTML + CSS
<div class="progress">
<div class="progress-bar progress-bar-theme" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">95% Complete</span>
</div>
</div>
</div><!-- /col-lg-6 -->
</div><!-- /row -->
</div><!-- /container -->
<!-- +++++ Footer Section +++++ -->
<?php include('include_page/footer.php'); ?>
<?php include ('include_page/bottom.php'); ?>
</body>
</html>