-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,600,700|Open+Sans" rel="stylesheet">
<title>Friends App</title>
</head>
<body>
<div class="container">
<div class="heading">
<h1>Friends App</h1>
</div>
<div class="sort-bar">
<div class="wrap">
<span class="sort">Age </span>
<span class="arrow-down">↓</span>
<span class="arrow-up">↑</span>
<span class="filter">Name</span>
</div>
<input class ="search" type="text" placeholder="Search..">
</div>
<div class="grid"></div>
</div>
<script src="script.js"></script>
</body>
</html>