-
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
2391cb4
commit e124233
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
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,36 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Document</title> | ||
<link rel="stylesheet" href="style.css" /> | ||
<!-- Include Firebase Compatibility Build --> | ||
<script type="module" src="script.js"></script> | ||
|
||
</head> | ||
</head> | ||
<body> | ||
<main> | ||
<div class="container"> | ||
|
||
<input class="name-input" type="text"> | ||
<input class="insta-input" type="text"> | ||
<div class="msg-wrapper"> | ||
<span class="msg">this is messege</span> | ||
</div> | ||
|
||
<div class="like-wrapper"> | ||
<button class="btn"> | ||
<img class="like-btn" src="greylike.png" alt="" /> | ||
<span>like</span> | ||
</button> | ||
|
||
<div class="like-count">Likes: <span id="likeCount">0</span></div> | ||
</div> | ||
</div> | ||
</main> | ||
|
||
</script> | ||
</body> | ||
</html> |