-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jamal SaadEddin
committed
Jul 3, 2023
1 parent
2df044d
commit 43e4e5d
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<link rel="stylesheet" href="./Frontend/css/HomePage.css"> | ||
<title>Waslni - Home Page</title> | ||
<link rel="icon" href="./Frontend/images/WaslniLogo.png" type="image/x-icon"> | ||
<meta charset="UTF-8"> | ||
|
||
<style> | ||
body { | ||
background-image: url('./Frontend/images/HomePage/Background.webp'); | ||
background-repeat: no-repeat; | ||
background-attachment: fixed; | ||
background-size: 100% 100%; | ||
} | ||
|
||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="image"> | ||
<img src="./Frontend/images/HomePage/items.png"> | ||
</div> | ||
<div> | ||
<label class="logo">WASLNI</label> | ||
|
||
</div> | ||
|
||
<div> | ||
<h1>STAY AT HOME</h1> | ||
<h2>WE DELIVER !</h2> | ||
<h3>Our delivery service is designed to be flexible and convenient</h3> | ||
<h4>with a range of delivery options to suit your needs.</h4> | ||
</div> | ||
|
||
<div> | ||
<a href="./Frontend/pages/signup.html"> | ||
<input type="button" class="sign" id="myButton" value="Sign Up" /> | ||
</a> | ||
</div> | ||
|
||
<div> | ||
<a href="./Frontend/pages/login.html"> | ||
<input type="button" class="log" id="myButton" value="Log In" /> | ||
</a> | ||
</div> | ||
|
||
<script> | ||
var button = document.getElementById("myButton"); | ||
button.addEventListener("click", function () { | ||
button.style.backgroundColor = "white"; | ||
}); | ||
</script> | ||
|
||
<script> | ||
var button = document.getElementById("myButton"); | ||
button.addEventListener("click", function () { | ||
button.style.backgroundColor = "white"; | ||
}); | ||
</script> | ||
|
||
|
||
|
||
|
||
|
||
|
||
</body> | ||
|
||
</html> |