-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
98 lines (87 loc) · 3.53 KB
/
about.html
File metadata and controls
98 lines (87 loc) · 3.53 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
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Wanderdot - The Art of Clare Haley</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<!-- Instead of downloading Bootstrap, jQuery and Javascript, we will use MaxCDN -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!-- Google Fonts -->
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Tangerine">
</head>
<body>
<div class="container">
<!-- Fixed Navigation Bar-->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Wanderdot - The Art of Clare Haley</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="index.html" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Portfolio <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="city.html">City</a></li>
<li><a href="sea.html">Sea</a></li>
</ul>
</li>
<li><a href="about.html">About</a></li>
<li><a href="http://wanderdot.tumblr.com/">Blog</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- Body of home page -->
<div class="container">
<div id="about" class="row">
<div class="col-xs-8">
<h2 class="page-header">Painter & Wanderer</h2>
<p>
<h4>I am an artist, language-lover and teacher living in the UK.</h4></p>
<p>
<h4>I love working in watercolour, ink, pen, pencil and acrylics.</h4></p>
<p>
<h4>My work is drawn from moments travelling in the UK and abroad.</h4></p>
<h4><p> Please <a href="index.html">explore my portfolio</a> and feel free to <a href="contact.php">contact me for a commission.</a></h4></p>
<div id="quote"><h4><p> » Eine Linie ist ein Punkt, der spazieren geht «</h4></p></div>
<div id="quote-en"><h4><p>A line is a dot that went for a walk</h4></p></div>
<div id="klee"><h4><p>Paul Klee</h4></p></div>
</div>
<div class="col-xs-4">
<img id="profilePic" src="images/clare.jpg" alt="Clare Haley pic" class="img-responsive img-rounded">
</div>
</div>
<hr>
<!-- Footer Section -->
<div class="container">
<footer>
<div class="row">
<div class="col-lg-9">
<p>Copyright © Clare Haley 2015. All Rights Reserved.</p>
</div>
<div class="col-lg-3">
<p>Created by Patrick Kennedy</p>
</div>
</div>
</div>
</footer>
</div>
</div>
</body>
</html>