Skip to content

adding MYNAME to project list #14

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 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h1>MKS Front-End Final Projects!</h1>
<img src="images/project-atxnerdyladies.png" alt="" class="picture" id="elyse">
<h2 class="name">Elyse</h2>
<h3 class="project-name">
<a href="projects/project-atxnerdyladies.html">ATX Nerdy Ladies</a>
<a href="../projects/project-sample.html">ATX Nerdy Ladies</a>
</h3>
<p class="project-description">
My final project will be to work on the <a href="http://atxnerdyladi.es">ATX Nerdy Ladies</a> site and get some new features up!
Expand Down
Binary file added projects/happy_puppy.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions projects/project-sample copy.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ATX Nerdy Ladies | Project List | MKS Front-End Cohort 1</title>
<link rel="stylesheet" href="../stylesheets/app.css" />
<script src="../bower_components/modernizr/modernizr.js"></script>
</head>

<!-- change the ID here to your name ID. it should be the same as the ID on the .picture div in index.html -->
<body class="project-page" id="YOURNAME">

<!-- YOURNAME Project -->
<div class="project">
<div class="project-wrap">
<div class="picture">
<!-- change to your photo URL -->
<img src="../images/project-YOURIMAGE.png" alt="">
</div>
<h2 class="name">Your Name</h2>
<h3 class="project-name">Your Project Name</h3>
<p class="project-description">
Tell us what you'll be working on! Plenty of space here!
</p>
</div>
</div>
<!-- END -->

<script src="../bower_components/jquery/dist/jquery.min.js"></script>
<script src="../bower_components/foundation/js/foundation.min.js"></script>
<script src="../js/app.js"></script>
</body>
</html>
10 changes: 5 additions & 5 deletions projects/project-sample.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
<!-- change the ID here to your name ID. it should be the same as the ID on the .picture div in index.html -->
<body class="project-page" id="YOURNAME">

<!-- YOURNAME Project -->
<!-- Finding Fido Project -->
<div class="project">
<div class="project-wrap">
<div class="picture">
<!-- change to your photo URL -->
<img src="../images/project-YOURIMAGE.png" alt="">
<img src="happy_puppy.jpg" alt="Kelly's alt test is the mutha fuckin bomb!">
</div>
<h2 class="name">Your Name</h2>
<h3 class="project-name">Your Project Name</h3>
<h2 class="name">Kelly Hannifin</h2>
<h3 class="project-name">Finding Fido</h3>
<p class="project-description">
Tell us what you'll be working on! Plenty of space here!
A pet finding web app that allows you to locate your lost animals or find the owner of a pet you may have found in your neighborhood!
</p>
</div>
</div>
Expand Down