Skip to content

Commit

Permalink
adding reset css and global css
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaifArfan committed Jul 13, 2021
1 parent 594ea29 commit fe195bc
Show file tree
Hide file tree
Showing 4 changed files with 491 additions and 9 deletions.
20 changes: 11 additions & 9 deletions README.md
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!
8 changes: 8 additions & 0 deletions globalStyles.css
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;
}
23 changes: 23 additions & 0 deletions index.html
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>
Loading

0 comments on commit fe195bc

Please sign in to comment.