Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Jefinrojar committed May 28, 2024
0 parents commit 5139738
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 0 deletions.
20 changes: 20 additions & 0 deletions about.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- header starts -->
<nav>
<a href="home.php">Home</a>
<a href="jobs.php">Jobs</a>
<a href="about.php">About us</a>
<a href="contact.php">Contact us</a>
</nav>
<!-- header ends -->
<h1>about us</h1>
</body>
</html>
20 changes: 20 additions & 0 deletions contact.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- header starts -->
<nav>
<a href="home.php">Home</a>
<a href="jobs.php">Jobs</a>
<a href="about.php">About us</a>
<a href="contact.php">Contact us</a>
</nav>
<!-- header ends -->
<h1>Contact us</h1>
</body>
</html>
22 changes: 22 additions & 0 deletions home.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- header starts -->
<nav>
<a href="home.php">Home</a>
<a href="jobs.php">Jobs</a>
<a href="about.php">About us</a>
<a href="contact.php">Contact us</a>
</nav>
<!-- header ends -->
<h1>Home</h1>
</body>
</html>
20 changes: 20 additions & 0 deletions jobs.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- header starts -->
<nav>
<a href="home.php">Home</a>
<a href="jobs.php">Jobs</a>
<a href="about.php">About us</a>
<a href="contact.php">Contact us</a>
</nav>
<!-- header ends -->
<h1>jobs</h1>
</body>
</html>
18 changes: 18 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
body{
margin: 0;
padding: 0;
box-sizing: border-box;
}
nav{
display: flex;
justify-content: space-between;
background: whitesmoke;
border-bottom: 3px solid rgba(103, 103, 103, 0.43);
z-index: 10;
}
nav a{
text-decoration: none;
color: black;
padding: 20px;
}

0 comments on commit 5139738

Please sign in to comment.