-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitial_consul.html
39 lines (37 loc) · 1.22 KB
/
initial_consul.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
<!DOCTYPE html>
<html>
<head>
<title>Lower Back - Initial Consultstion</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="stylesheet" type="text/css" href="assets/css/common.css"> -->
<link rel="stylesheet" type="text/css" href="assets/css/initial_consul.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
</head>
<body>
<!-- header section start -->
<header>
<div class="back">
<img src="assets/images/back.png">
</div>
<p>
Your Lower Back Program
</p>
</header>
<div class="main">
<div class="consult_popup">
<p class="popup_title">Thank you for your purchase</p>
<p class="popup_text">To access exercises, book a consultation with us so we can tailor your program to your needs.</p>
<button>Book Call Now</button>
</div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(".back img").click(function(){
window.location.href = "landing.html";
});
});
</script>
</html>