-
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.
change background color and insert div element
1 parent
2b5dc60
commit 6ead15a
Showing
2 changed files
with
16 additions
and
9 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 |
---|---|---|
@@ -1,17 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Cafe Menu</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<main> | ||
<h1>CAMPER CAFE</h1> | ||
<p>Est. 2020</p> | ||
<section> | ||
<h2>Coffee</h2> | ||
</section> | ||
</main> | ||
<div id="menu"> | ||
<main> | ||
<h1>CAMPER CAFE</h1> | ||
<p>Est. 2020</p> | ||
<section> | ||
<h2>Coffee</h2> | ||
</section> | ||
</main> | ||
</div> | ||
</body> | ||
</html> |
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,3 +1,7 @@ | ||
h1{ | ||
body { | ||
background-color: burlywood; | ||
} | ||
|
||
h1, h2, p { | ||
text-align: center; | ||
} |