-
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
3d217be
commit 447ff15
Showing
2 changed files
with
189 additions
and
67 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,34 +1,33 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>Blob</title> | ||
<meta name="viewport" content="width=device-width" /> | ||
<link rel="stylesheet" href="styles.css" /> | ||
</head> | ||
|
||
<head> | ||
<title>Blob</title> | ||
<meta name="viewport" content="width=device-width"> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
|
||
<body> | ||
<div id="container" class="container"> | ||
<template id="char-tmpl"> | ||
<div class="character"> | ||
<div class="shadow"></div> | ||
<div class="body"></div> | ||
<div class="face"> | ||
<div class="left-eye"> | ||
<div class="iris"> | ||
<div class="pupil"></div> | ||
<body> | ||
<div id="container" class="container"> | ||
<template id="char-tmpl"> | ||
<div class="character"> | ||
<div class="shadow"></div> | ||
<div class="body"></div> | ||
<div class="face"> | ||
<div class="left-eye"> | ||
<div class="iris"> | ||
<div class="pupil"></div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="right-eye"> | ||
<div class="iris"> | ||
<div class="pupil"></div> | ||
<div class="right-eye"> | ||
<div class="iris"> | ||
<div class="pupil"></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
</div> | ||
<script type="text/javascript" src="script.js"></script> | ||
</body> | ||
|
||
</template> | ||
<button id="btn-appearance">Change Appearance</button> | ||
</div> | ||
<script type="text/javascript" src="script.js"></script> | ||
</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