Skip to content

Commit

Permalink
updated assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-krull committed Jun 12, 2020
1 parent 438d181 commit 543dec9
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
# webFun_css_flex_navbar
# Flex Navbar

## Use `git` & `github` to set up this assignment
1. Fork the repo
2. Use `git clone <repo url>` to clone the repo on your computer
3. Use your text editor to properly recreate the images
4. Use `git` to `commit` and `push` the changes to your forked repo
5. Submit the assignment using the `github` link

### Part I
![part I](https://s3.amazonaws.com/General_V88/boomyeah2015/codingdojo/curriculum/content/chapter/Screen_Shot_2020-06-08_at_10.39.26_AM.png)

### Part II
![part II](https://s3.amazonaws.com/General_V88/boomyeah2015/codingdojo/curriculum/content/chapter/Screen_Shot_2020-06-08_at_10.39.36_AM.png)

- [ ] Use the supplied HTML code snippets to recreate the images using flex.
- [ ] (optional) Use google font Montserrat
23 changes: 23 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="center-box">
<div class="center-item"></div>
</div>
<div>
    <img src="dojo-icon.png" alt="dojo-icon">
    <h1>Coding Dojo</h1>
    <ul>
        <li><a href="#">Home</a></li>
        <li><a href="#">Contacts</a></li>
        <li><a href="#">About Me</a></li>
        <li><a href="#">Cool Sites</a></li>
    </ul>
</div>
</body>
</html>

0 comments on commit 543dec9

Please sign in to comment.