-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (80 loc) · 3.87 KB
/
index.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<head>
<link href="https://fonts.googleapis.com/css?family=Amatic+SC|Raleway" rel="stylesheet">
<title>Portfolio - Jenny Haggerty</title>
<!--bootstrap-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!--end bootstrap-->
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<div class = "container-fluid">
<header>
<ul>
<li id="name">jenny haggerty</li>
<div class="button-group">
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</div><!--button-group-->
</ul>
</header>
<body>
<!--about me section-->
<div id="page1" class="img-responsive">
<a id="about" class="smooth"></a>
<h2>Hola! I'm Jen, an
<br>aspiring developer from
<br>San Antonio, TX.</h2>
</div>
<!--end about me section-->
<!--portfolio section-->
<div id="page2">
<a id="portfolio" class="smooth"></a>
<h1><strong>Portfolio</strong></h1>
<div class="container">
<div class="row">
<div class="col-sm-4 col-md-4" style="padding-left: 5px; padding-right: 5px; padding-bottom: 10px;">
<a href="http://www.jennyhaggerty.com"><img src="http://www.jennyhaggerty.com/Images/placeholder1.jpg" class="img-rounded img-responsive" alt="me"></a>
</div>
<div class="col-sm-4 col-md-4" style="padding-left: 5px; padding-right: 5px; padding-bottom: 10px;">
<a href="http://www.jennyhaggerty.com"><img src="http://www.jennyhaggerty.com/Images/placeholder2.jpg" class="img-rounded img-responsive" alt="me"></a>
</div>
<div class="col-sm-4 col-md-4" style="padding-left: 5px; padding-right: 5px; padding-bottom: 10px;">
<a href="http://www.jennyhaggerty.com"><img src="http://www.jennyhaggerty.com/Images/placeholder3.jpg" class="img-rounded img-responsive" alt="me"></a>
</div>
</div><!--row-->
</div><!--container-->
<div class="container">
<div class="row" id="row2">
<div class="col-sm-4 col-md-4" style="padding-left: 5px; padding-right: 5px; padding-bottom: 10px;">
<a href="http://www.jennyhaggerty.com"><img src="http://www.jennyhaggerty.com/Images/placeholder4.jpg" class="img-rounded img-responsive" alt="me"></a>
</div>
<div class="col-sm-4 col-md-4" style="padding-left: 5px; padding-right: 5px; padding-bottom: 10px;">
<a href="http://www.jennyhaggerty.com"><img src="http://www.jennyhaggerty.com/Images/placeholder5.jpg" class="img-rounded img-responsive" alt="me"></a>
</div>
<div class="col-sm-4 col-md-4" style="padding-left: 5px; padding-right: 5px; padding-bottom: 10px;">
<a href="http://www.jennyhaggerty.com"><img src="http://www.jennyhaggerty.com/Images/placeholder6.jpg" class="img-rounded img-responsive" alt="me"></a>
</div>
</div><!--row-->
</div><!--container-->
</div>
<!--end porfolio section-->
<!--contact me section-->
<div id="page3">
<a id="contact" class="smooth"></a>
<h1><strong>Contact Me</strong></h1>
<div class="contact-buttons">
<a href="http://github.com/jenjenjenio" class="btn btn-default" role="button">Github</a>
<a href="mailto:[email protected]" class="btn btn-default" role="button">Email</a>
<a href="http://www.twitter.com/jennyhaggerty" class="btn btn-default" role="button">Twitter</a>
</div><!--contact buttons-->
</div>
<!--end contact me section-->
</body>
</body>
<footer>
<h1><center>Jen Marie © 2017. All rights reserved.</center></h1>
</footer>
</div>