-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter.html
96 lines (93 loc) · 3.68 KB
/
twitter.html
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
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Twitter profile page</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">Edit profile</button>
</form>
</div>
</section>
</header>
<div class="container">
<aside class="profile-details">
<h3>
Elliot Alderson
<small class="text-muted">@fsociety</small>
</h3>
<p>Regular twitter user | ¯\_(ツ)_/¯</p>
<ul class="profile-items">
<li class="profile-entry"><a href="#">San Antonio, TX</a></li>
<li class="profile-entry"><a href="#">codeup.com</a></li>
<li class="text-muted profile-entry">Joined June 2011</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">Safia Abdalla <span class="text-muted">@captainsafia</span></h4>
Unit tests are an important part of self-care.
</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">Little Idea <span class="text-muted">@littleidea</span></h4>
<p>I've only seen one thing produce software quality... conscientious people with quality as a high
priority.</p>
<p>Often those people should have prioritized 'valuable'.</p>
<p>Live and learn. Live and learn.</p>
</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>