-
Notifications
You must be signed in to change notification settings - Fork 159
Oluwagbemi Abiodun #168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Alakowe19
wants to merge
2
commits into
boolean-uk:main
Choose a base branch
from
Alakowe19:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Oluwagbemi Abiodun #168
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"liveServer.settings.port": 5501 | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>Twitter clone</title> | ||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" | ||
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" | ||
crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
</head> | ||
<body> | ||
<!-- building side, it starts here --> | ||
<div class="sidebar"> | ||
<i class="fab fa-twitter"></i> | ||
|
||
<div class="sidebarOption active"> | ||
<span class="material-icons"> home </span> | ||
<h2>Home</h2> | ||
</div> | ||
|
||
<div class="sidebarOption active"> | ||
<span class="material-icons"> search </span> | ||
<h2>Explore</h2> | ||
</div> | ||
|
||
<div class="sidebarOption active"> | ||
<span class="material-icons"> notifications_none </span> | ||
<h2>Notifications</h2> | ||
</div> | ||
|
||
<div class="sidebarOption active"> | ||
<span class="material-icons"> mail_outline </span> | ||
<h2>Messages</h2> | ||
</div> | ||
|
||
<div class="sidebarOption active"> | ||
<span class="material-icons"> bookmark_border </span> | ||
<h2>Bookmark</h2> | ||
</div> | ||
|
||
<div class="sidebarOption active"> | ||
<span class="material-icons"> list_alt </span> | ||
<h2>Lists</h2> | ||
</div> | ||
|
||
<div class="sidebarOption active"> | ||
<span class="material-icons"> perm_identity </span> | ||
<h2>Profiles</h2> | ||
</div> | ||
|
||
<div class="sidebarOption active"> | ||
<span class="material-icons"> more_horiz </span> | ||
<h2>More</h2> | ||
|
||
</div> | ||
<button class="sidebar_tweet">Tweet </button> | ||
</div> | ||
<!-- my sidebar ends here --> | ||
|
||
<!-- I start building my feeds here --> | ||
<div class="feed"> | ||
<div class="feed_header"> | ||
<h2>Home</h2> | ||
</div> | ||
|
||
<div class="tweetBox"> | ||
<form> | ||
<div class="tweetbox_input"> | ||
<img | ||
src="images/twitterr.jpg" | ||
alt="" | ||
/> | ||
<input type="text" placeholder="what's happening?"/> | ||
<button class="tweetBox_tweetButton">Tweet </button> | ||
</div> | ||
</form> | ||
</div> | ||
|
||
<!-- I start buiding my post section here --> | ||
<div class="post"> | ||
<div class="post_avatar"> | ||
<img | ||
src="images/twitterr.jpg" | ||
alt="" | ||
/> | ||
</div> | ||
|
||
<div class="post_body"> | ||
<div class="post_header"> | ||
<div class="post_headertext"> | ||
<h3>Oluwagbemi Abiodun | ||
<span class="post_headerspecial"> | ||
<span class="material-icons post_badge"> verified </span>@alakowee | ||
</span> | ||
</h3> | ||
<div class="post_headerdescription"> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. </p> | ||
</div> | ||
</div> | ||
<img | ||
src="https://images.pexels.com/photos/14456608/pexels-photo-14456608.jpeg" | ||
alt="" | ||
/> | ||
<div class="post_footer"> | ||
<span class="material-icons"> repeat </span> | ||
<span class="material-icons"> favorite_border </span> | ||
<span class="material-icons"> publish </span> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
<!-- Post sector ends here --> | ||
|
||
|
||
<!-- I start buiding my post section here --> | ||
<div class="post"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think this div should be floating all the way at the left side of the file |
||
<div class="post_avatar"> | ||
<img | ||
src="images/twitterr.jpg" | ||
alt="" | ||
/> | ||
</div> | ||
|
||
<div class="post_body"> | ||
<div class="post_header"> | ||
<div class="post_headertext"> | ||
<h3>Oluwagbemi Abiodun | ||
<span class="post_headerspecial"> | ||
<span class="material-icons post_badge"> verified </span>@alakowee | ||
</span> | ||
</h3> | ||
<div class="post_headerdescription"> | ||
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p> | ||
</div> | ||
</div> | ||
<img | ||
src="https://images.pexels.com/photos/20414804/pexels-photo-20414804/free-photo-of-a-woman-with-afro-hair-smiling-in-a-yellow-dress.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" | ||
alt="" | ||
/> | ||
<div class="post_footer"> | ||
<span class="material-icons"> repeat </span> | ||
<span class="material-icons"> favorite_border </span> | ||
<span class="material-icons"> publish </span> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
<!-- Post sector ends here --> | ||
|
||
</div> | ||
<!-- This is where I end my feeds section --> | ||
|
||
<!-- I start my widgets here --> | ||
|
||
<div class="widgets"> | ||
<div class="widgets_input"> | ||
<span class="material-icons widgets_searchIcon"> search </span> | ||
<input type="text" placeholder="Search Twitter"> | ||
|
||
</div> | ||
|
||
<div class="widgets_container"> | ||
<h2>What's Happening</h2> | ||
<a class="twitter-timeline" href="https://twitter.com/home?ref_src=twsrc%5Etfw">Tweets by home</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> | ||
</div> | ||
</div> | ||
<!-- It ends here --> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Your indentation is a little off, I'm not sure where one div ends and another begins. This would be easier to maintain like this: