-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Showing
4 changed files
with
50 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Initial commit | ||
# Please enter the commit message for your changes. Lines starting | ||
# with '#' will be ignored, and an empty message aborts the commit. | ||
# | ||
# On branch master | ||
# | ||
# Initial commit | ||
# | ||
# Changes to be committed: | ||
# new file: cs.css | ||
# new file: index.html | ||
# new file: js.js | ||
# |
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,3 @@ | ||
body { | ||
background-color: #00cae4; | ||
} |
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,34 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Blog Project</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="description" content=""> | ||
<link rel="stylesheet" href="css/app.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Arsenal!</h1> | ||
</header> | ||
<div class="container"> | ||
<main> | ||
|
||
</main> | ||
</div> | ||
|
||
<!-- start of new content --> | ||
<aside> | ||
<h2>About Me</h2> | ||
|
||
<p>Walter White</p> | ||
</aside> | ||
<!-- end of new content --> | ||
|
||
<footer> | ||
Made with ♥ @ Udacity | ||
</footer> | ||
|
||
<script src="js/app.js"></script> | ||
</body> | ||
</html> |