-
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
462711b
commit b80bcd4
Showing
1 changed file
with
44 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,44 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="stylesheet" href="./styles.css" /> | ||
<title>Penguin</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
</head> | ||
|
||
<body> | ||
<div class="left-mountain"></div> | ||
<div class="back-mountain"></div> | ||
<div class="sun"></div> | ||
<div class="penguin"> | ||
<div class="penguin-head"> | ||
<div class="face left"></div> | ||
<div class="face right"></div> | ||
<div class="chin"></div> | ||
<div class="eye left"> | ||
<div class="eye-lid"></div> | ||
</div> | ||
<div class="eye right"> | ||
<div class="eye-lid"></div> | ||
</div> | ||
<div class="blush left"></div> | ||
<div class="blush right"></div> | ||
<div class="beak top"></div> | ||
<div class="beak bottom"></div> | ||
</div> | ||
<div class="shirt"> | ||
<div>💜</div> | ||
<p>I CSS</p> | ||
</div> | ||
<div class="penguin-body"> | ||
<div class="arm left"></div> | ||
<div class="arm right"></div> | ||
<div class="foot left"></div> | ||
<div class="foot right"></div> | ||
</div> | ||
</div> | ||
|
||
<div class="ground"></div> | ||
</body> | ||
</html> |