-
Notifications
You must be signed in to change notification settings - Fork 118
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
1 parent
8f06f2a
commit b9c8d48
Showing
9 changed files
with
613 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,80 @@ | ||
* { | ||
margin: 0; | ||
border: 0; | ||
padding: 0; | ||
|
||
|
||
} | ||
|
||
.navbar { | ||
min-height: 150px; | ||
max-width: 100%; | ||
/* background-color: black;*/ | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
header { | ||
min-height: 100vh; | ||
max-width: 100%; | ||
background-image: url(https://tse3.mm.bing.net/th?id=OIP.lYslLxm3sZkmg85A4YkykwHaDl&pid=Api&P=0&h=180); | ||
background-repeat: no-repeat; | ||
background-position: right; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 150px; | ||
} | ||
|
||
.logo img { | ||
height: 150px; | ||
width: 150px; | ||
margin: 10px; | ||
} | ||
|
||
|
||
|
||
ul { | ||
display: flex; | ||
} | ||
|
||
li { | ||
list-style: none; | ||
} | ||
|
||
ul li a { | ||
text-decoration: none; | ||
color: black; | ||
background: peachpuff; | ||
padding: 10px 20px; | ||
margin: 10px; | ||
border: 2px solid blueviolet; | ||
font-weight: 1000; | ||
font-variant: small-caps; | ||
letter-spacing: 1px; | ||
transition: .5s; | ||
|
||
} | ||
|
||
ul li a:hover { | ||
background: rgb(102, 36, 105); | ||
border-radius: 20px; | ||
letter-spacing: 2px; | ||
color: black; | ||
} | ||
|
||
|
||
|
||
h1 { | ||
color: black; | ||
text-align: center; | ||
font-size: 90px; | ||
} | ||
|
||
lucky { | ||
color: deeppink; | ||
font-size: 100px; | ||
font-weight: 1000; | ||
font-variant: small-caps; | ||
letter-spacing: 1.5px; | ||
} |
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,39 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<link rel='stylesheet' href='homepage.css' /> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Smart Saver</title> | ||
|
||
</head> | ||
<body> | ||
<header> | ||
<div class="navbar"> | ||
<!--this is for logo--> | ||
<div class="logo"> | ||
<img src="LOGO.png"> | ||
|
||
</div> | ||
<!--navigation items list like home about--> | ||
<nav> | ||
<ul> | ||
<li><a href="#">home</a></li> | ||
<li><a href="#">about</a></li> | ||
<li><a href="#">contact</a></li> | ||
<li><a href="#">Services</a></li> | ||
|
||
<li><a href="#">reviews</a></li> | ||
</ul> | ||
|
||
</nav> | ||
</div> | ||
|
||
<h1>Welcome To The<br><lucky>Smart Saver Website</lucky></h1> | ||
|
||
</header> | ||
|
||
</body> | ||
</html> | ||
|
||
https://tse3.mm.bing.net/th?id=OIP.lYslLxm3sZkmg85A4YkykwHaDl&pid=Api&P=0&h=180 |
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,226 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=Nosifer&display=swap'); | ||
|
||
@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=EB+Garamond:ital,wght@1,500&family=Nosifer&display=swap'); | ||
|
||
|
||
* { | ||
margin: 0; | ||
border: 0; | ||
padding: 0; | ||
|
||
|
||
} | ||
|
||
html { | ||
scroll-behavior: smooth; | ||
} | ||
|
||
body { | ||
background: black; | ||
} | ||
|
||
header { | ||
min-height: 100vh; | ||
max-width: 100%; | ||
background-image: url(https://tse3.mm.bing.net/th?id=OIP.lYslLxm3sZkmg85A4YkykwHaDl&pid=Api&P=0&h=180); | ||
background-repeat: no-repeat; | ||
background-position: right; | ||
background-size: contain; | ||
|
||
} | ||
|
||
.logo img { | ||
height: 100px; | ||
width: 100px; | ||
margin: 10px; | ||
|
||
} | ||
|
||
.navbar { | ||
min-height: 100%; | ||
max-height: 100%; | ||
background: none; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
nav ul { | ||
display: flex; | ||
} | ||
|
||
nav ul li { | ||
list-style: none; | ||
} | ||
|
||
ul li a { | ||
text-decoration: none; | ||
color: white; | ||
margin: 10px; | ||
font-weight: 1000; | ||
font-size: 20px; | ||
transition: .5s; | ||
border-radius: 10px; | ||
padding: 10px; | ||
} | ||
|
||
ul li a:hover { | ||
background: rgb(94, 36, 105); | ||
border-radius: 20px; | ||
color: white; | ||
} | ||
|
||
.content { | ||
min-height: 50vh; | ||
text-align: left; | ||
margin-left: 300px; | ||
color: white; | ||
margin: 10px; | ||
padding-left: 30px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: left; | ||
justify-content: center; | ||
|
||
} | ||
|
||
h1 { | ||
font-style: 50px; | ||
font-size: 100px; | ||
|
||
} | ||
|
||
lucky { | ||
color: plum; | ||
font-style: 90px; | ||
font-weight: 1000; | ||
font-variant: small-caps; | ||
letter-spacing: 1.5px; | ||
text-shadow: 1px 2px black; | ||
font-family: agbalumo; | ||
|
||
} | ||
|
||
h1::first-letter { | ||
color: rgb(25, 0, 255); | ||
} | ||
|
||
span:first-child { | ||
color: rgb(25, 0, 255); | ||
} | ||
|
||
.direct-buttons a { | ||
text-decoration: none; | ||
padding: 10px 10px; | ||
margin: 10px; | ||
background: papayawhip; | ||
border-radius: 20px; | ||
color: black; | ||
font-weight: 1000; | ||
font-variant: small-caps; | ||
letter-spacing: 1.5px; | ||
transition: .5s; | ||
margin: 10px; | ||
|
||
|
||
|
||
} | ||
|
||
.direct-buttons a:hover { | ||
background: rgb(94, 36, 105); | ||
color: white; | ||
font-weight: 1000; | ||
|
||
|
||
} | ||
|
||
span1 { | ||
letter-spacing: 5px; | ||
|
||
} | ||
|
||
.about { | ||
min-height: 10vh; | ||
max-width: 100%; | ||
background: rgb(0, 0, 0); | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.about-img img { | ||
height: 500px; | ||
width: 500px; | ||
border-radius: 20px; | ||
transition: .5s; | ||
} | ||
|
||
.about-img img:hover { | ||
transform: scale(); | ||
} | ||
|
||
.about-container { | ||
min-height: 50vh; | ||
max-width: 100%; | ||
background: peachpuff; | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-around; | ||
margin: 10px; | ||
padding: 10px; | ||
gap: 50px; | ||
border-radius: 20px; | ||
} | ||
|
||
.about-para { | ||
width: 500px; | ||
} | ||
|
||
.about-heading h1 { | ||
color: black; | ||
font-size: 40px; | ||
font-weight: 600px; | ||
font-variant: small-caps; | ||
font-family: agbalumo; | ||
|
||
} | ||
|
||
.small-text { | ||
color: rgb(247, 0, 255); | ||
font-style: italic; | ||
font-family: sans-serif; | ||
font-size: 30px; | ||
margin-top: 10px; | ||
margin-bottom: 10px; | ||
font-weight: 1000; | ||
} | ||
|
||
.about-para p { | ||
color: white; | ||
font-size: 20px; | ||
word-spacing: 1.5px; | ||
line-height: 30px; | ||
text-align: justify; | ||
} | ||
|
||
.about-buttons { | ||
margin-top: 50px; | ||
} | ||
|
||
.about-buttons a { | ||
text-decoration: none; | ||
padding: 10px 20px; | ||
background: black; | ||
color: white; | ||
border-radius: 20px; | ||
margin: 10px; | ||
transition: .5s; | ||
|
||
} | ||
|
||
.about-buttons a:hover { | ||
cursor: pointer; | ||
background: purple; | ||
border-radius: 0px; | ||
color: black; | ||
} |
Oops, something went wrong.