This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathownfriend.html
55 lines (52 loc) · 2.54 KB
/
ownfriend.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
<!DOCTYPE html>
<html>
<head>
<title>Friends Function</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/list.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.5.0/Chart.bundle.js"></script>
<script src="js/list.js"></script>
<script type="text/javascript" src="js/home.js"></script>
<!--This is the Font awesome links for the icons used -->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--This is the google fonts link -->
<link href="https://fonts.googleapis.com/css?family=Katibeh|Philosopher|Poiret+One" rel="stylesheet">
</head>
<body>
<div class="innermainContainer">
<!-- Friends Activity (sources from: https://www.w3schools.com/ ) -->
<div id="move" class="w3-sidebar w3-light-grey w3-bar-block" style="width:27%">
<h4 class="w3-bar-item" id="change">Friends Activity</h4>
<a href="#" class="w3-bar-item w3-button w3-hover-blue">Ben is having his run!</a>
<a href="#" class="w3-bar-item w3-button w3-hover-blue">Diana is playing ice hockey with her friend</a>
<a href="#" class="w3-bar-item w3-button w3-hover-blue">Chris had finished his challenge. Do you want to challenge him?</a>
</div>
<div style="margin-right:27%">
<div class="w3-container">
<div id="friends">
<form>
<i id="back" class="fa fa-arrow-circle-o-left fa-3x" aria-hidden="true" onclick="history.go(-1)"></i>
</form>
<input type="text" id="myInput" onkeyup="myFunction()" placeholder="Search for names of your friends">
<ul id="myUL">
<li><a href="ada.html">Megan</a></li>
<li><a href="alex.html">Alex</a></li>
<li><a href="#">Ben</a></li>
<li><a href="#">Chris</a></li>
<li><a href="#">Calvin</a></li>
<li><a href="#">Christina</a></li>
<li><a href="#">David</a></li>
<li><a href="#">Diana</a></li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>