-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice.html
43 lines (40 loc) · 1.99 KB
/
practice.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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width-device-width,initial scale=1.0">
<title>practice of buy now</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="practicebuy.css">
</head>
<body>
<div class="main-heading">
<div class="box1">
<h1>Budget Travels</h1>
</div>
<div class="box2">
<div class="search">
<input type="text" class="searchTerm" placeholder="search for places to visit">
<button type="submit" class="searchButton">
<i class="fa fa-search"></i>
</button>
</div>
</div>
</div>
<div class="section">
<div class="section">
<h2>Rajasthan Package</h2>
<img src="projectimages/rr3.jpg" alt="image" height="300px" width="65%">
<h3>Rs.10,000</h3>
<a class="btn btn-primary" id="buynow" role="button" onclick="goToform('Rajasthan package','Rs.10,000')">Buy now</a>
</div>
<div class="section">
<h2>Karnatka Package</h2>
<img src="projectimages/rr5.jpg" alt="image" height="300px" width="65%">
<h3>Rs.17,999</h3>
<a class="btn btn-primary" id="buynow" role="button" onclick="goToform('karnataka package','Rs.17,000')">Buy now</a>
</div>
</div>
<script src="practice.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>