-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
104 lines (104 loc) · 4.11 KB
/
profile.html
File metadata and controls
104 lines (104 loc) · 4.11 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
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype HTML>
<html>
<head>
<title>Cheatsheets - Hyper</title>
<link rel="stylesheet" href="black_white.css">
</head>
<body>
<nav class="nav-header">
<a href="#" class="logo">Hyper</a>
<a href="#" class="right">Logout</a>
</nav>
<main class="profile-page">
<header class="hero">
<img src="images/hyper/snow.jpg">
<h1>Cindi</h1>
</header>
<aside class="profile-details">
<img src="images/hyper/snow_profile.jpg">
<h1 class="name">Cindi Millwright</h1>
<p>
I love fashion and I'm a passionate photographer.
I study Graphic Design at University and I'm hoping to make it my career.
I hope you like my shoots!
</p>
<h2>Interests</h2>
<ul>
<li>Graphic Design</li>
<li>Photography</li>
<li>Modelling</li>
<li>Rock climbing</li>
<li>Hanging out with friends</li>
</ul>
<h2>Friends</h2>
<ul class="friends">
<li class="friend">
<img class="profile" alt="Alexa's Profile Picture" src="images/hyper/grass_profile.jpg">
<h3 class="name">Alexa</h1>
</li>
<li class="friend">
<img class="profile" alt="Jimmy's Profile Picture" src="images/hyper/denim_profile.jpg">
<h3 class="name">Jimmy</h1>
</li>
</ul>
</aside>
<section class="feed">
<article class="feed-item">
<header class="feed-details">
<img class="profile" src="images/hyper/snow_profile.jpg">
<h2 class="name"><strong>Cindi</strong> posted a shoot 2 hours ago.</h2>
</header>
<div class="shoot-group">
<img class="shoot-item featured" src="images/hyper/shoot4.jpg">
<img class="shoot-item" src="images/hyper/shoot1.jpg">
<img class="shoot-item" src="images/hyper/shoot3.jpg">
</div>
<button type="button" class="button like">❤</button>
<article class="comment">
<img class="profile" alt="Alexa's Profile Picture" src="images/hyper/grass_profile.jpg">
<h1 class="name">Alexa</h1>
<time datetime="Sun Jan 07 2018 17:28:17 GMT+1100 (AEDT)">An hour ago</time>
<p class="comment-text">
Wow! What an incredible shoot. I'm loving this outfit, will have to try my own version!
</p>
</article>
<article class="comment">
<img class="profile" alt="Jimmy's Profile Picture" src="images/hyper/denim_profile.jpg">
<h1 class="name">Jimmy</h1>
<time datetime="Sun Jan 07 2018 17:28:17 GMT+1100 (AEDT)">A few minutes ago</time>
<p class="comment-text">
Yesssssss!!! I am absolutely loving this. When are we doing a shoot together?
</p>
</article>
<form class="comment">
<img class="profile" alt="Alexa's Profile Picture" src="images/hyper/grass_profile.jpg">
<textarea class="comment-field"></textarea>
<input class="button submit" type="submit" value="Post">
</form>
</article>
<article class="feed-item">
<header class="feed-details">
<img class="profile" src="images/hyper/snow_profile.jpg">
<h2 class="name"><strong>Cindi</strong> posted a shoot 2 hours ago.</h2>
</header>
<div class="shoot-group">
<img class="shoot-item featured" src="images/hyper/shoot5.jpg">
<img class="shoot-item tall" src="images/hyper/shoot6.jpg">
</div>
<button class="button like">❤</button>
<form class="comment">
<img class="profile" alt="Alexa's Profile Picture" src="images/hyper/grass_profile.jpg">
<textarea class="comment-field"></textarea>
<input class="button submit" type="submit" value="Post">
</form>
</article>
</section>
</main>
<footer>
<nav class="nav-footer">
<a href="#">About</a>
<a href="#">Terms</a>
</nav>
</footer>
</body>
</html>