-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHom.php
More file actions
84 lines (68 loc) · 1.66 KB
/
Hom.php
File metadata and controls
84 lines (68 loc) · 1.66 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
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
<?php
include('config.php');
error_reporting(0);
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SmartStitch-Home</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" type="image/x-icon" href="Images/Favicon.png">
<style>
* {
text-decoration: none;
margin: 0;
padding: 0%;
}
body {
background-color: #e0e3ce;
}
.homebutton input {
width: 150px;
padding: 15px;
border: none;
border-radius: 30px;
margin-top: 20px;
background-color: #2b300d;
color: #e0e3ce;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
}
.homebutton input:hover {
box-shadow: 0px 0px 0px 1px #7e876d;
opacity: 0.7;
}
#myVideo {
display: none;
}
@media only screen and (max-width: 768px) {
#myVideo {
display: block;
}
.welcomeimg {
display: none;
}
}
</style>
</head>
<body>
<?php
include('header.php');
?>
<main>
<video class="welcomeimg" autoplay muted width="100%">
<source src="Images/Home-Landscape.mp4" type="video/mp4">
</video>
<video id="myVideo" autoplay muted width="100%">
<source src="Images/Home-Portrait.mp4" type="video/mp4">
</video>
</main>
<?php
include('footer.php');
?>
</body>
</html>