Created
April 25, 2021 23:23
-
-
Save LukePeters/9e9e70c20da5878937f0f2c07f947f61 to your computer and use it in GitHub Desktop.
Follower Counts App - HTML
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Follower Counts</title> | |
<link rel="preconnect" href="https://fonts.gstatic.com"> | |
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap" rel="stylesheet"> | |
<link rel="stylesheet" href="link-the-stylesheet-here.css"> | |
</head> | |
<body> | |
<section class="large-stats-wrapper"> | |
<div class="large-stats"> | |
<div class="stat"> | |
<h2 class="stat__title stat__title--youtube">YouTube Subscribers</h2> | |
<span class="stat__number">100</span> | |
</div> | |
<div class="stat"> | |
<h2 class="stat__title stat__title--twitter">Twitter Followers</h2> | |
<span class="stat__number">200</span> | |
</div> | |
<div class="stat"> | |
<h2 class="stat__title stat__title--instagram">Instagram Followers</h2> | |
<span class="stat__number">300</span> | |
</div> | |
</div> | |
</section> | |
<section class="records"> | |
<div class="table-wrapper"> | |
<div class="table"> | |
<div class="table__row"> | |
<div class="table__cell">Date</div> | |
<div class="table__cell">YouTube</div> | |
<div class="table__cell">Twitter</div> | |
<div class="table__cell">Instagram</div> | |
</div> | |
<div class="table__row"> | |
<div class="table__cell">25 Apr 2021</div> | |
<div class="table__cell">100</div> | |
<div class="table__cell">200</div> | |
<div class="table__cell">300</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment