|
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> |
|
|
|
|
|
<!-- NAVBAR --> |
|
<!-- 6.My portfolio should have a navbar with an id of "navbar--> |
|
|
|
<navbar id="navbar" class="nav"> |
|
<ul> |
|
<li><a href="#welcome-section">About</a></li> |
|
<li><a href="#projects">Work</a></li> |
|
<li><a href="#contact-section">Contact</a></li> |
|
</ul> |
|
|
|
</navbar> |
|
|
|
<!-- WELCOME SECTION --> |
|
<!-- 1. My portfolio should have a Welcome section with an id of "welcome-section"--> |
|
|
|
<section id="welcome-section"> |
|
<div> |
|
<h1>My name is Gabriela</h1> |
|
</div> |
|
</section> |
|
|
|
|
|
|
|
<!-- PROJECTS SECTION --> |
|
|
|
<!--3. My portfolio should have a projects section with an id of "projects".--> |
|
|
|
<section id="projects" class="projects-section"> |
|
<h2 class="projects-section-header">Portfolio</h2> |
|
|
|
<div class="projects-grid"> |
|
<!-- |
|
4. The projects section should contain at least one element with a class of "project-tile" to hold a project. |
|
|
|
All info of each project is contained in div container w/class "project-tile" and id= to the project's name. |
|
--> |
|
|
|
|
|
|
|
<a id="survey-form" |
|
class="project project-tile" |
|
href="https://codepen.io/candytale55/pen/qBWZYZp" |
|
target="_blank"> |
|
<img src="https://raw.githubusercontent.com/freeCodeCamp/cdn/master/build/testable-projects-fcc/images/tribute.jpg" |
|
alt="Tribute page project snapshot"> |
|
<p class="project-title"> |
|
<span class="thingies"><</span> |
|
Survey Form |
|
<span class="thingies">/></span> |
|
</p> |
|
</a> <!--End of id="survey-form"--> |
|
|
|
|
|
|
|
<a id="tribute-page" |
|
class="project project-tile" |
|
href="https://codepen.io/candytale55/pen/bGbppor" |
|
target="_blank"> |
|
<img src="https://raw.githubusercontent.com/freeCodeCamp/cdn/master/build/testable-projects-fcc/images/tribute.jpg" |
|
alt="Tribute page"> |
|
<p class="project-title"> |
|
<span class="thingies"><</span> |
|
Tribute Page |
|
<span class="thingies">/></span> |
|
</p> |
|
</a> <!--End of id="tribute-page"--> |
|
|
|
|
|
|
|
|
|
|
|
<a id="technical-doc" |
|
class="project project-tile" |
|
href="https://codepen.io/candytale55/pen/RXVWZj" |
|
target="_blank"> |
|
<img src="https://raw.githubusercontent.com/freeCodeCamp/cdn/master/build/testable-projects-fcc/images/tribute.jpg" |
|
alt="Tribute page project snapshot"> |
|
<p class="project-title"> |
|
<span class="thingies"><</span> |
|
Technical Documentation |
|
<span class="thingies">/></span> |
|
</p> |
|
|
|
</a> <!--End of id="technical-doc"--> |
|
|
|
|
|
<a id="product-landing-page" |
|
class="project project-tile" |
|
href="https://codepen.io/candytale55/pen/MWgjmOv" |
|
target="_blank"> |
|
<img src="https://raw.githubusercontent.com/freeCodeCamp/cdn/master/build/testable-projects-fcc/images/tribute.jpg" |
|
alt="Tribute page project snapshot"> |
|
<p class="project-title"> |
|
<span class="thingies"><</span> |
|
Product Landing Page |
|
<span class="thingies">/></span> |
|
</p> |
|
</a> <!--End of id="product-landing-page"--> |
|
|
|
|
|
|
|
|
|
|
|
</div> <!--End of "projects-grid"--> |
|
|
|
<a |
|
href="#" |
|
class="btn btn-show-more" |
|
target="_blank" |
|
> |
|
Show more |
|
<span class="icon">></span> |
|
</a> |
|
|
|
|
|
|
|
</section> <!-- End of Projects Section --> |
|
|
|
|
|
|
|
|
|
|
|
<!-- CONTACT SECTION --> |
|
|
|
<section id="contact-section"> |
|
|
|
<div class="contact-links"> |
|
<a href="#"><i></i>Facebook</a> |
|
</div> |
|
|
|
<div class="contact-links"> |
|
<a id="profile-link" |
|
href="https://github.com/candytale55" |
|
target="_blank"> |
|
<i></i>GitHub</a> |
|
</div> |
|
|
|
<div class="contact-links"> |
|
<a href="#"><i></i>CodePen</a> |
|
</div> |
|
|
|
<div class="contact-links"> |
|
<a href="#">OtherStuff</a> |
|
</div> |
|
|
|
</section> |
|
|
|
<!-- FOOTER SECTION --> |
|
|
|
<footer> |
|
<div> |
|
<p>This is a fake portfolio</p> |
|
<p>fake.name@mail.com</p> |
|
<p>phone: 555-55-55-55</p> |
|
<p> © 2019</p> |
|
</div> |
|
</footer> |