blob: d5c205897d6617e051379b3ccbad7c2736df9d4f (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Atte.ro</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Home page of Attero">
<meta name="author" content="Justyna Edyta Ilczuk">
<link href="css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px;
}
</style>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="shortcut icon" href="ico/favicon.ico">
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<a class="brand" href="#">Attero</a>
<ul class="nav nav-pills">
<li><a href="./index.html">Home</a></li>
<li class="active"><a href="./about.html">About</a>
<li><a href="./contact.html">Contact</a></li>
<li><a href="./projects.html">Projects</a></li>
</ul>
</a>
<div class="nav-collapse collapse">
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<div class="container-fluid">
<div class="row-fluid">
<div class="span2 well">
<div class="">
<p>11.08.2012</p>
<h3>
<i class="icon-wrench"></i>Something about something!
</h3>
</div>
</div>
<div class="span10">
<div class="page-header">
<h1>About this site...</h1>
</div>
<p>Site is designed to be my home page. However I still
don't have clear idea, what I'm going to store here. Probably
lot of everything if I get serious about this site...</p>
<p>Firstly I want to develop <a href="./projects.html">Projects</a>
section. My life is mostly reading about interesting stuff and doing
things, hence I regard projects as something really important.</p>
<img src="./img/measure.jpg" style="padding:10px"/>
<p>Photo taken in
<a href="http://if.pw.edu.pl/www_en/">faculty of physics
at Warsaw University of Technology</a>.
</p>
<br/>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class= "span12">Made by Justyna Edyta Ilczuk also known as Attero ;)</div>
<div>
</div>
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery-1.8.0.min.js"></script>
</body>
</html>
|