forked from Juliopo/html-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (68 loc) · 2.41 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The HTML5 Herald</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta name="description" content="The HTML5 Herald">
<meta name="author" content="SitePoint">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="main_container">
<header class="header">
<div class="page-flows">
<span class="page-flows_flow">
<i class="ion-chevron-left"></i>
</span>
<span class="page-flows_flow">
<i class="ion-chevron-right disabled"></i>
</span>
</div>
<div class="search">
<input class="search_input" type="text" placeholder="Search">
</div>
<div class="user">
<div class="user__notifications">
<i class="ion-android-notifications"></i>
</div>
<div class="user__inbox">
<i class="ion-archive"></i>
</div>
<div class="user__info">
<img class="user__info__img" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/7022/adam_proPic.jpg" alt="Profile Picture" class="img-responsive">
<span class="user__info__name">
<span class="first">Adam</span>
<span class="last">Lowenthal</span>
</span>
</div>
<div class="user__actions">
<div class="dropdown">
<button class="dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<i class="ion-chevron-down"></i>
</button>
</div>
</div>
</div>
</header>
<section class="main_content">
<section class="left_aside">
</section>
<section class="content">
<section class="artist_view">
</section>
<section class="song_list">
</section>
</section>
<section class="right_aside">
</section>
</section>
<footer class="footer">
</footer>
</div>
</body>
</html>