Skip to content

tst #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open

tst #16

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
131 changes: 105 additions & 26 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,41 +6,120 @@
<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="main.css">
<title>HTML Portfolio</title>

</head>
<body>

<!--
Previous project placeholder begins
-->
<div class="header">
<h1>Morgan McCircuit</h1>
<h2>I write code</h2>
</div>
<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="#">katie</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>

<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 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>The Moofia</h1>
<p>Sandy Mozzarella leads the Moofia. The Moofia was assembled to extort milk from the lunchboxes of schoolyard
bullies. Mozzarella is loving and kind to good kids but ruthless and feared by those who harass the innocent.
By taking the milkfrom the bad and giving it to the good, the Moofia know thegood will grow up strong and healthy
to protect themselves. Milk is power. Milk is protection.</p>
</div>
</div>
</div>
<div class="item">
<div class="container">
<div class="carousel-caption">
<h1>Cactus Friends</h1>
<p>Sandy The cactus is a sign of protection. Kids are naïve and vulnerable and need protection. SANDy and her friends
zip themselves into cactus suits because they think the world is a cold and scary place, and they need some
armor to face it. The cactus is the conserver of water, and water means life. The Cactus Friends are the representation
of life, of being fragile and strong at the same time… and pure like water.</p>
</div>
</div>
</div>
<div class="item">
<div class="container">
<div class="carousel-caption">
<h1>Til Death Do Us Part</h1>
<p>Sandy Adios spent 500 years in fire and brimstone before the Devil discovered his good natured ways and kicked
him out of Hell. Too mischievous for Heaven, Adios was condemned to live forever on earth in his modern grave-loft
with his girlfriend Ciao Ciao and their cat Skeletrino. Together, Adios and Ciao Ciao wander the world, sharing
with others how to make the most out of this lif.</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>

<div class="marketing">
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>header </h2>
<p> hello <span class="glyphicon glyphicon-heart">
</span>
</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>
</div>
<div class="col-md-4">
<h2>header </h2>
<p>2 <span class="glyphicon glyphicon-heart">
</span>
</p>
</div>

<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 class="col-md-4">
<h2>header </h2>
<p>3<span class="glyphicon glyphicon-heart">
</span>
</p>
</div>
</div>
</div>
</div>
<!--
Previous project placeholder ends
(unused pieces will be deleted at the last task)
-->

<footer>
<div class="container">
<h3>Tokidoki</h3>
<p>2017</p>
</div>
</footer>


<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
Expand Down