Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
136 changes: 136 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Twitter Replica</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<div class="container">
<nav class="sidebar">
<ul>
<li><i class="fab fa-twitter"></i></li>
<li><i class="fas fa-home"></i> Home</li>
<li><i class="fas fa-hashtag"></i> Explore</li>
<li><i class="fas fa-bell"></i> Notifications</li>
<li><i class="fas fa-envelope"></i> Messages</li>
<li><i class="fas fa-bookmark"></i> Bookmarks</li>
<li><i class="fas fa-list"></i> Lists</li>
<li><i class="fas fa-user"></i> Profile</li>
<li><i class="fas fa-ellipsis-h"></i> More</li>
<li>
<button><i class="fas fa-feather-alt"></i> Tweet</button>
</li>
</ul>
</nav>
<main class="main-content">
<header>
<h1>Home</h1>
</header>
<div class="tweet-box">
<img
src="https://i.pinimg.com/474x/df/f8/03/dff803e9e1915cb6a48f1d6c1f44cb57.jpg"
alt="User Avatar"
/>
<input type="text" placeholder="What's happening?" />
</div>
<div class="tweet-box-icons">
<div class="icons-left">
<i class="fas fa-image"></i>
<i class="fas fa-file-alt"></i>
<i class="fas fa-chart-bar"></i>
<i class="fas fa-smile"></i>
</div>
<button class="tweet-button">Tweet</button>
</div>
<div class="tweet">
<div class="user-retweeted">
<i class="fas fa-retweet"></i> Eric Elliott Retweeted
</div>
<div class="tweet-header">
<img
src="https://mycyberuniverse.com/images/articles/Milena/how-save-memoji-as-png/thumbnail.png"
alt="User Avatar"
/>
<div>
<strong>woki GITer of COINs</strong><span>@owocki</span> · 26m
</div>
</div>
<p>
me as an engineer, 2015: the CEOs vision is so hand-wavey 👋<br />
<br />
me as a CEO, 2021: (waves hand) this is my vision 🌅
</p>
<div class="tweet-actions">
<i class="fas fa-comment"></i>
<i class="fas fa-retweet"></i>
<i class="fas fa-heart"></i>
<i class="fas fa-share"></i>
</div>
</div>
<div class="tweet">
<div class="tweet-header">
<img
src="https://pbs.twimg.com/profile_images/1073893807228416005/vDiuFHxa_400x400.jpg"
alt="GroupDocs Avatar"
/>
<div><strong>GroupDocs</strong> @GroupDocs</div>
</div>
<p>
GroupDocs Total for .NET is a compilation of every .NET
<span>#API</span> offered by <span>#GroupDocs</span>. We compile it
on a daily basis to ensure that it contains the most up-to-date
versions of each of our .NET document
<span>#automation</span> APIs.<br />Read more:
<a href="#">bit.ly/347331o</a>
</p>
<div class="tweet-actions">
<i class="fas fa-comment"></i>
<i class="fas fa-retweet"></i>
<i class="fas fa-heart"></i>
<i class="fas fa-share"></i>
</div>
</div>
</main>
<aside class="right-sidebar">
<section class="whats-happening">
<h2>What's happening</h2>
<div class="news-item">
<h3>
Bus hijacked by protesters and set alight on sixth night of unrest
in Northern Ireland
</h3>
<p>
Trending with <span>#Belfast</span>, <span>#NorthernIreland</span>
</p>
</div>
<div class="news-item">
<h3>#MeetTheRichardsons</h3>
<p>Brand new comedy from Dave’s favourite couple returns at 10pm</p>
</div>
<div class="news-item">
<h3>Alex Jones</h3>
<p>46.5K Tweets</p>
</div>
<div class="news-item">
<h3>Hong Kong</h3>
<p>36K Tweets</p>
</div>
<div class="news-item">
<h3>
New Zealand is virtually Covid-free. Just don’t try to buy a home
here
</h3>
<p>36K Tweets</p>
</div>
<button>Show more</button>
</section>
</aside>
</div>
</body>
</html>
Loading