nss-evening-cohort-9 / foundations-group-project-kiss-the-goat

foundations-group-project-kiss-the-goat created by GitHub Classroom
0 stars 0 forks source link

Product Page NavBar #3

Closed KeithRWalker closed 5 years ago

KeithRWalker commented 5 years ago

User Story

As a user I want to be able to easily navigate to other parts of the website from the product page. I want the page to load correctly, and to see at least a basic website.

AC

WHEN I load the product page I should be able to see a basic webpage with a navigation bar that is easy to understand. THEN I should be able to click the links on the navigation button to bring me to another location of the website

Development

KeithRWalker commented 5 years ago

basic html template: https://getbootstrap.com/docs/4.3/getting-


<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

    <title>Hello, world!</title>
  </head>
  <body>
    <h1>Hello, world!</h1>

    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
  </body>
</html>```
KeithRWalker commented 5 years ago

Reserved for Navbar snippet

KeithRWalker commented 5 years ago

productPageMoqup

zoeames commented 5 years ago

can you use something a little more descriptive then printDiv for the class/id? maybe something like products-container?

KeithRWalker commented 5 years ago

can you use something a little more descriptive then printDiv for the class/id? maybe something like products-container?

yea I think I will go with productCon just to keep consistent with the camel case

emilykdewitt commented 5 years ago

Keith--looks like you changed the class name to 'productCon' but the id is still 'printDiv' -- you'll probably want to change that too.

KeithRWalker commented 5 years ago

Keith--looks like you changed the class name to 'productCon' but the id is still 'printDiv' -- you'll probably want to change that too.

fixed thank you!

zoeames commented 5 years ago

👍