-
Notifications
You must be signed in to change notification settings - Fork 73
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
594ea29
commit fe195bc
Showing
4 changed files
with
491 additions
and
9 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 |
---|---|---|
@@ -1,27 +1,29 @@ | ||
# Shaif's Cuisine | ||
A community project | ||
|
||
|
||
A community project | ||
|
||
## Developer teams of Shaif's Cuisine | ||
|
||
1. Shaif Arfan | ||
1. Anwar saeed | ||
1. MD Moniruzzaman Sojol | ||
1. Lovekesh Pal | ||
1. Houmayan Rashid Chy | ||
|
||
Here is the some rules for other team members to contribute: | ||
* For every Member there will be a selected section/page. And he will work on this selected section/page only. | ||
* Every page must have the Global CSS linked. | ||
* Every section must follow this HTML layout: | ||
``` | ||
Here are the some rules for other team members to contribute: | ||
|
||
- For every Member there will be a selected section/page. And he will work on this selected section/page only. | ||
- Every page must have the Global CSS & Reset CSS linked. | ||
- Every section must follow this HTML layout: | ||
|
||
``` | ||
<section> | ||
<div class="container"> | ||
...section content | ||
</div> | ||
</section> | ||
``` | ||
``` | ||
|
||
Further rules will be added here. | ||
|
||
Happy Coding! | ||
Happy Coding! |
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,8 @@ | ||
section { | ||
padding: 100px 0; | ||
} | ||
.container { | ||
max-width: 1200px; | ||
width: 90%; | ||
margin: 0 auto; | ||
} |
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,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Shaif's Cuisine</title> | ||
<link rel="stylesheet" href="./reset.css"> | ||
<link rel="stylesheet" href="./globalStyles.css"> | ||
<!-- Add your custom css --> | ||
|
||
</head> | ||
|
||
<body> | ||
<section> | ||
<div class="container"> | ||
<h1>Hello Brother</h1> | ||
</div> | ||
</section> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.