-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
42 lines (34 loc) · 961 Bytes
/
services.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
<!DOCTYPE html">
<html data-theme="light">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/[email protected]/css/pico.min.css"
/>
<link rel="stylesheet" href="css/services.css" />
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<script defer src="app.js" ></script>
</head>
<body>
<div class="nav">
<nav class="container">
<ul>
<li>
<strong>Elite Body Home</strong>
</li>
</ul>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="#">Services</a></li>
</ul>
</nav>
</div>
<div class="services-container">
<div class="category-container" id="category-container"></div>
<div id="service-details"></div>
</div>
</body>
</html>