-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtwitter.html
More file actions
91 lines (89 loc) · 2.93 KB
/
twitter.html
File metadata and controls
91 lines (89 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/twitter.css">
</head>
<body>
<nav class="top-nav">
<ul class="nav">
<li class="nav-item"><a class="nav-link" href="#">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#">Moments</a></li>
<li class="nav-item"><a class="nav-link" href="#">Notifications</a></li>
<li class="nav-item"><a class="nav-link" href="#">Messages</a></li>
</ul>
</nav>
<header>
<section class="profile">
<div class="profile-header">
<img class="img-circle profile-image" src="https://randomuser.me/api/portraits/men/12.jpg" alt="user">
</div>
<div class="profile-form">
<form action="#" class="text-right">
<button class="btn btn-large">profile Edit</button>
</form>
</div>
</section>
</header>
<div class="container">
<aside class="profile-details">
<h3>
Jim Olson
<small class="text-muted">blamingsociety</small>
</h3>
<p>social media page</p>
<ul class="profile-items">
<li class="profile-entry"><a href="#">nj,nj</a></li>
<li class="profile-entry"><a href="#">codeup.com</a></li>
<li class="text-muted profile-entry">Joined Jan 30 1994</li>
</ul>
</aside>
<main class="timeline">
<div class="media">
<img class="media-image img-circle" src="https://randomuser.me/api/portraits/women/18.jpg" alt="Random user">
<div class="media-body">
<h4 class="tweet-user">Alex <span class="text-muted"></span></h4>
I like to sing in the shower
</div>
</div>
<div class=media>
<img class="media-image img-circle" src="https://randomuser.me/api/portraits/men/22.jpg" alt="Random user">
<div class="media-body">
<h4 class="tweet-user">Miguel <span class="text-muted">@migueldoesntlisten</span></h4>
</div>
</div>
</main>
<aside class="who-to-follow">
<div class="media">
<h3>Who to follow</h3>
<img class="media-image img-circle" src="https://randomuser.me/api/portraits/men/25.jpg" alt="Random user">
<div class="media-body">
<h4>wozgeass
<small class="text-muted">@lelouch_linux</small>
</h4>
<button class="btn">Follow</button>
</div>
</div>
<div class="media">
<img class="media-image img-circle" src="https://randomuser.me/api/portraits/women/11.jpg" alt="Random user">
<div class="media-body">
<h4>Łukasz Gruszka
<small class="text-muted">@lukgru</small>
</h4>
<button class="btn">Follow</button>
</div>
</div>
<div class="media">
<img class="media-image img-circle" src="https://randomuser.me/api/portraits/women/31.jpg" alt="Random user">
<div class="media-body">
<h4>Huertito
<small class="text-muted">@huertitoDA</small>
</h4>
<button class="btn">Follow</button>
</div>
</div>
</aside>
</div>
</body>
</html>