|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <title>Twitter profile page</title> |
| 6 | + <link rel="stylesheet" href="css/twitter.css"> |
| 7 | +</head> |
| 8 | +<body> |
| 9 | +<nav class="top-nav"> |
| 10 | + <ul class="nav"> |
| 11 | + <li class="nav-item"><a class="nav-link" href="#">Home</a></li> |
| 12 | + <li class="nav-item"><a class="nav-link" href="#">Moments</a></li> |
| 13 | + <li class="nav-item"><a class="nav-link" href="#">Notifications</a></li> |
| 14 | + <li class="nav-item"><a class="nav-link" href="#">Messages</a></li> |
| 15 | + </ul> |
| 16 | +</nav> |
| 17 | +<header> |
| 18 | + <section class="profile"> |
| 19 | + <div class="profile-header"> |
| 20 | + <img class="img-circle profile-image" src="https://randomuser.me/api/portraits/men/12.jpg" alt="user"> |
| 21 | + </div> |
| 22 | + <div class="profile-form"> |
| 23 | + <form action="#" class="text-right"> |
| 24 | + <button class="btn btn-large">Edit profile</button> |
| 25 | + </form> |
| 26 | + </div> |
| 27 | + </section> |
| 28 | +</header> |
| 29 | +<div class="container"> |
| 30 | + <aside class="profile-details"> |
| 31 | + <h3> |
| 32 | + Elliot Alderson |
| 33 | + <small class="text-muted">@fsociety</small> |
| 34 | + </h3> |
| 35 | + |
| 36 | + <p>Regular twitter user | ¯\_(ツ)_/¯</p> |
| 37 | + |
| 38 | + <ul class="profile-items"> |
| 39 | + <li class="profile-entry"><a href="#">San Antonio, TX</a></li> |
| 40 | + <li class="profile-entry"><a href="#">codeup.com</a></li> |
| 41 | + <li class="text-muted profile-entry">Joined June 2011</li> |
| 42 | + </ul> |
| 43 | + </aside> |
| 44 | + <main class="timeline"> |
| 45 | + <div class="media"> |
| 46 | + <img class="media-image img-circle" src="https://randomuser.me/api/portraits/women/18.jpg" alt="Random user"> |
| 47 | + <div class="media-body"> |
| 48 | + <h4 class="tweet-user">Safia Abdalla <span class="text-muted">@captainsafia</span></h4> |
| 49 | + Unit tests are an important part of self-care. |
| 50 | + </div> |
| 51 | + </div> |
| 52 | + <div class=media> |
| 53 | + <img class="media-image img-circle" src="https://randomuser.me/api/portraits/men/22.jpg" alt="Random user"> |
| 54 | + <div class="media-body"> |
| 55 | + <h4 class="tweet-user">Little Idea <span class="text-muted">@littleidea</span></h4> |
| 56 | + <p>I've only seen one thing produce software quality... conscientious people with quality as a high |
| 57 | + priority.</p> |
| 58 | + <p>Often those people should have prioritized 'valuable'.</p> |
| 59 | + <p>Live and learn. Live and learn.</p> |
| 60 | + </div> |
| 61 | + </div> |
| 62 | + </main> |
| 63 | + <aside class="who-to-follow"> |
| 64 | + <div class="media"> |
| 65 | + <h3>Who to follow</h3> |
| 66 | + <img class="media-image img-circle" src="https://randomuser.me/api/portraits/men/25.jpg" alt="Random user"> |
| 67 | + <div class="media-body"> |
| 68 | + <h4>wozgeass |
| 69 | + <small class="text-muted">@lelouch_linux</small> |
| 70 | + </h4> |
| 71 | + <button class="btn">Follow</button> |
| 72 | + </div> |
| 73 | + </div> |
| 74 | + <div class="media"> |
| 75 | + <img class="media-image img-circle" src="https://randomuser.me/api/portraits/women/11.jpg" alt="Random user"> |
| 76 | + <div class="media-body"> |
| 77 | + <h4>Łukasz Gruszka |
| 78 | + <small class="text-muted">@lukgru</small> |
| 79 | + </h4> |
| 80 | + <button class="btn">Follow</button> |
| 81 | + </div> |
| 82 | + </div> |
| 83 | + <div class="media"> |
| 84 | + <img class="media-image img-circle" src="https://randomuser.me/api/portraits/women/31.jpg" alt="Random user"> |
| 85 | + <div class="media-body"> |
| 86 | + <h4>Huertito |
| 87 | + <small class="text-muted">@huertitoDA</small> |
| 88 | + </h4> |
| 89 | + <button class="btn">Follow</button> |
| 90 | + </div> |
| 91 | + </div> |
| 92 | + </aside> |
| 93 | +</div> |
| 94 | +</body> |
| 95 | +</html> |
0 commit comments