forked from codeschool-projects/BootstrapPortfolioProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
103 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,44 +4,118 @@ | |
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | ||
<script src="https://use.fontawesome.com/730786c612.js"></script> | ||
<link rel="stylesheet" href="main.css"> | ||
|
||
<title>HTML Portfolio</title> | ||
</head> | ||
<body> | ||
<!--Hier begint de NavBar! --> | ||
<nav class="navbar navbar-default"> | ||
<div class="container"> | ||
<!-- Brand and toggle get grouped for better mobile display --> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#portfolio-collapse-menu"> | ||
<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="#">Jeremy Sikkens</a> | ||
</div> | ||
|
||
<!-- Collect the nav links, forms, and other content for toggling --> | ||
<div class="collapse navbar-collapse" id="portfolio-collapse-menu"> | ||
<ul class="nav navbar-nav"> | ||
<li><a href="#">Home</a></li> | ||
<li><a href="#">About</a></li> | ||
</ul> | ||
</div> | ||
<!-- /.navbar-collapse --> | ||
</div> | ||
<!-- /.container-fluid --> | ||
</nav> | ||
<!-- | ||
Previous project placeholder begins | ||
--> | ||
<div class="header"> | ||
<h1>Jeremy McCircuit</h1> | ||
<h2>I write code</h2> | ||
</div> | ||
<!--Hier eindigt de NavBar! --> | ||
|
||
<div class="tagline"> | ||
<h3>Who I am</h3> | ||
<p>Hi, my name is Morgan and I love to write code that is efficient.</p> | ||
</div> | ||
|
||
|
||
<div class="skills"> | ||
<h3>What I do</h3> | ||
<p>Here are some of the languages I use on a day-to-day.</p> | ||
<ul> | ||
<li>HTML</li> | ||
<li>CSS</li> | ||
<li>JavaScript</li> | ||
</ul> | ||
<!--Hier begint de Carousel! --> | ||
<div id="portfolio-carousel" class="carousel slide" data-ride="carousel"> | ||
<!-- Indicators --> | ||
<ol class="carousel-indicators"> | ||
<li data-target="#portfolio-carousel" data-slide-to="0" class="active"></li> | ||
<li data-target="#portfolio-carousel" data-slide-to="1"></li> | ||
<li data-target="#portfolio-carousel" data-slide-to="2"></li> | ||
</ol> | ||
<div class="carousel-inner" role="listbox"> | ||
<div class="item active"> | ||
<div class="container"> | ||
<div class="carousel-caption"> | ||
<h1>Dit ben ik</h1> | ||
<p>Mijn naam is Jeremy Sikkens, Growth Hacker bij TransIP.</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<div class="container"> | ||
<div class="carousel-caption"> | ||
<h1>Growth Hacking als procesmatige methode voor groei.</h1> | ||
<p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<div class="container"> | ||
<div class="carousel-caption"> | ||
<h1>Als je het kunt meten, kun je het verbeteren.</h1> | ||
<p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<a class="left carousel-control" href="#portfolio-carousel" role="button" data-slide="prev"> | ||
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> | ||
<span class="sr-only">Previous</span> | ||
</a> | ||
<a class="right carousel-control" href="#portfolio-carousel" role="button" data-slide="next"> | ||
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> | ||
<span class="sr-only">Next</span> | ||
</a> | ||
</div> | ||
<!--Hier eindigt de Carousel! --> | ||
|
||
<div class="contact"> | ||
<h3>Get in touch</h3> | ||
<p>I live in the cloud and can't be seen. Send messages to the good people at <a target="_blank" href="https://twitter.com/codeschool">Code School</a> and they'll notify me.</p> | ||
</div> | ||
<!-- | ||
Previous project placeholder ends | ||
(unused pieces will be deleted at the last task) | ||
--> | ||
<div class="marketing"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-4"> | ||
<span class="fa fa-hand-spock-o fa-10x"></span> | ||
<h2>Geekiness +1</h2> | ||
<p>Lui, op een goede manier.</p> | ||
<p> Meer automatiseren == meer beter.</p> | ||
</div> | ||
<div class="col-md-4"> | ||
<span class="fa fa-space-shuttle fa-10x"></span> | ||
<h2>Snelle groei</h2> | ||
<p>Combineer product/ market fit met audience/ message fit en je groei is ongeremd.</p> | ||
</div> | ||
<div class="col-md-4"> | ||
<span class="fa fa-heart fa-10x"></span> | ||
<h2>Passie</h2> | ||
<p>Geen dag gaat voorbij zonder iets te leren, automatiseren of te optimaliseren.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="footer"> | ||
<div class="container"> | ||
<h3>Neem contact op</h3> | ||
<p>Je kunt me bereiken via <a target="_blank" href="[email protected]">[email protected]</a> of +31 (0) 6 54154603</p> | ||
</div> | ||
</div> | ||
|
||
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters