forked from TheCodingDojo/webFun_css_flex_navbar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
438d181
commit 543dec9
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |