-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
44 lines (44 loc) · 1.81 KB
/
index.php
File metadata and controls
44 lines (44 loc) · 1.81 KB
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
<?php
$title = 'INDEX';
include 'includes/header.php'?>
<h1>Welcome!!!!</h1>
<br/>
<?php
echo 'Stay positive!!';
echo '<br/>';
echo 'You "know" your worth and your capabilities. So believe and take a leap of Faith';
?>
<br/>
<?php
$name = 'Determination';
echo $name;
echo '<br/><h1>The way to success is: '.$name.'</h1><br/>';
?>
<!-- This below is the Button -->
<!--<a class="btn btn-success" href="https://momlovesbest.com/baby-shower-songs" role="button">Celebrate</a>-->
<a class="btn btn-dark" href="https://onionplay.uk/" role="button">Watch a Movie</a>
<a class="btn btn-info" href="https://www.hopscotch.in/baby?q=%7B%22browse%22:%22Girl%27s~~Unisex%22,%22isCategoryPreselected%22:true,%22isFromRefineFilter%22:true%7D" role="button">Baby Clothes</a>
<br/>
<div id="carouselExampleFade" class="carousel slide carousel-fade" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="Mirandus_Teaser.jpg" class="d-block w-100" alt="rouge3">
</div>
<div class="carousel-item">
<img src="288747.jpg" class="d-block w-100" alt="rouge2">
</div>
<div class="carousel-item">
<img src="658842.jpg" class="d-block w-100" alt="rouge1">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleFade" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleFade" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<br/>
<?php require 'includes/footer.php'?>