-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
executable file
·82 lines (73 loc) · 2.35 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Project Portfolio</title>
<meta name="description" content="">
<meta name="author" content=""><!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link rel="stylesheet" type="text/css" href="css/bootstrap_edit.css" >
<link rel="stylesheet" type="text/css" href="css/bebas.css">
<link rel="stylesheet" type="text/css" href="css/portfolio.css" >
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js" type="text/javascript"></script>
<style type="text/css">
.about{
margin-left: 45px;
}
#id_pic{
float: left;
padding:10px 20px 0 0;
}
#about_me {
/* float: left; */
color:#1DCAC0;
}
.hero-unit {
min-height: 300px;
}
</style>
</head>
<body>
<div class="topbar">
<div id="header">
<div id="header-pat">
<div id="header-top">
<div class="_topbar-inner">
<div class="container-fluid">
<h1 class="bebas" href="#">{:Name:}</h1>
<ul class="nav" style="float:right;">
<li><a href="index.php">Home</a></li>
<li class="active"><a href="about.html">About</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div><!-- end of header -->
<div class="container-fluid">
<div class="about">
<div class="content">
<div class="hero-unit">
<h1 id="about_me"> About me </h1>
<!--Vital information about you -->
<div id="id_pic">
<img src="http://placehold.it/220/fff/E8117f" />
</div>
<div id="about_text">
<!-- change this span here to change your story -->
<span><h3>More information coming soon.</h3></span>
</div>
</div><!-- end of info-->
<footer>
<p>ITP Portfolio</p>
</footer>
</div>
</div>
</div>
</body>
</html>