-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathactivities.html
103 lines (96 loc) · 3.3 KB
/
activities.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Exercise Search</title>
<link rel="stylesheet" href="./styles/header.css" />
<link rel="stylesheet" href="./styles/activities.css" />
<script
src="https://kit.fontawesome.com/63c7c4276d.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div id="header"></div>
<div class="main">
<div class="container">
<div>
<div id="search">
<h1>Exercise Search</h1>
<div>
<div>Keywords</div>
<input type="text" id="searchInput" placeholder="Enter keyword" />
</div>
<div>
<div>Intensity</div>
<div class="radio">
<input type="radio" name="difficulties" id="Light" /><span>
Light</span
>
<input type="radio" name="difficulties" id="Moderate" /><span>
Moderate</span
>
<input type="radio" name="difficulties" id="Strenuous" /><span>
Strenuous</span
>
<input type="radio" name="difficulties" id="All" /><span>
All</span
>
</div>
</div>
<button id="searchBtn">
<div>
<i class="fa-solid fa-magnifying-glass"></i>
</div>
Search
</button>
</div>
<div id="results"></div>
</div>
<div id="sidebarNav">
<h4>Search</h4>
<a href="food.html">
<i class="fa-solid fa-utensils"></i><span>Food</span>
</a>
<a href="recipe.html">
<i class="fa-solid fa-file-lines"></i><span>Recipes</span>
</a>
<a href="fitness.html">
<i class="fa-solid fa-stopwatch-20"></i><span>Fitness</span>
</a>
<a href="#">
<i class="fa-solid fa-user-group"></i><span>Members</span>
</a>
</div>
</div>
</div>
<!-- footer -->
<div id="img-logo">
<img src="https://static.fatsecret.com/static/images/mobi/ios/Download_on_the_App_Store_Badge_US-UK_RGB_blk_092917.svg" alt="">
<img src="https://static.fatsecret.com/static/images/mobi/android/en_get_2.svg" alt="">
<!-- <img class="img1" src="https://static.fatsecret.com/static/images/splash/Logo_Tab_Reverse_Green.png" alt=""> -->
</div>
<div id="card_section8">
<img src="https://a.ftscrt.com/static/images/social/but_social_facebook.svg" alt="">
<img src="https://a.ftscrt.com/static/images/social/but_social_instagram.svg" alt="">
<img src="https://a.ftscrt.com/static/images/social/but_social_twitter.svg" alt="">
<div id="mar">
<p>BRAND LIST</p>
<p>CONTACT US</p>
</div>
<div id="mar1">
<h3>FIND PEOPLE</h3>
<h3> | TERMS AND CONDITIONS</h3>
<h3>| PRIVACY POLICY</h3>
<h3>| REPORT ABUSE</h3>
</div>
</div>
<div id="card_section9">
<div>
<p>© 2022 FatSecret. All rights reserved.</p>
</div>
</body>
</html>
<script src="./scripts/activites.js" type="module"></script>