-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterests.html
More file actions
122 lines (120 loc) · 5.99 KB
/
interests.html
File metadata and controls
122 lines (120 loc) · 5.99 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Interests - Tamara Rivera</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
/*as seen on the Bootstrap documentation for preventing the footer to cover some of the page*/
body { padding-bottom: 70px; }
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false">
<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">Tamara Rivera</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<ul class="nav navbar-nav">
<li><a href="index.html">About me</a></li>
<li><a href="projects.html">Projects</a></li>
<li class="active"><a href="interests.html">Interests<span class="sr-only">(current)</span></a></li>
</ul>
</div>
</div>
</nav>
<main class="container-fluid">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<header><h1 class="text-center">Other interests</h1></header>
<article>
<div class="panel panel-default">
<div class="panel-body">
<header><h2>Irish dancing</h2></header>
<div class="row">
<div class="col-sm-4">
<img class="img-responsive" src="images/irish.jpg" alt="My second perfomance">
</div>
<div class="col-sm-8">
<p>I started to dance in Santiago, Chile and I have been dancing for aproximately two and a half years.</p>
<p>I fall in love with irish dance when I was in high school and my dance teacher was learning it, she teach
me some steps and I really like it.</p>
<p>When I finally graduated from college, I started to formally go to irish dance classes.</p>
<div class="well well-sm">
<p>This is a picture of my second performance back in Chile. I'm the second from left to right.</p>
</div>
</div>
</div>
</div>
</div>
</article>
<article>
<div class="panel panel-default">
<div class="panel-body">
<header><h2>Quilting</h2></header>
<div class="row">
<div class="col-sm-4">
<img class="img-responsive" src="images/quilt.jpg" alt="My queen size quilt in progress">
</div>
<div class="col-sm-8">
<p>I learned how to quilt by reading blogs and watching videos, it's a great way to relax and I find
amazing that with some effort you can create a really awesome heirloom.</p>
<div class="well well-sm">
<p>I have been working in this queen size quilt for more than 5 years.</p>
</div>
</div>
</div>
</div>
</div>
</article>
<article>
<div class="panel panel-default">
<div class="panel-body">
<header><h2>Baking</h2></header>
<div class="row">
<div class="col-sm-4">
<img class="img-responsive" src="images/baking.jpg" alt="A cheesecake made by me">
</div>
<div class="col-sm-8">
<p>I learn how to cook when I move in with my husband, about 3 years ago. One of the first things I learn was how to make cupcakes, I love to make them because I can be super creative with them and they also taste great!</p>
<div class="well well-sm">
<p>This is a raspberry cheesecake, it was great! Also featuring, my awesome hot pink mixer.</p>
</div>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
</main>
<footer>
<nav class="navbar navbar-inverse navbar-fixed-bottom">
<div class="container">
<p class="navbar-text navbar-right"><span class="glyphicon glyphicon-copyright-mark"></span> 2016 Tamara Rivera</p>
</div>
</nav>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>