Skip to content

Commit f1ecffe

Browse files
committed
Corrected Readme
1 parent 65af910 commit f1ecffe

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@ Note that the project is divided into three parts where each part represents a p
2020

2121
1. You will be given a zipped folder **(look for it at the end of this segment)** containing the basic folder structure of your blogging project.
2222

23-
**Please note that you must not alter the overall folder structure of the blogging project, otherwise your project might be wrongly evaluated.** The root directory will consist of an "index.html" file which will be the homepage of your blogging website.
23+
**Please note that you must not alter the overall folder structure of the blogging project, otherwise your project might be wrongly evaluated.** The root directory will consist of an "index.html" file which will be the homepage of your blogging website.
2424

2525
2. The root folder must consist of the folders named **html, styles, and scripts**. All your CSS files must be referenced from and kept inside the styles folder. Similarly, all the HTML files (except "index.html" file) must be placed inside the html folder. All the JavaScript files must be referenced from the scripts folder. You would need to create these folders and segregate your files as per the given guidelines.
26+
2627
3. The root folder consists of a folder named **images**. All the images used in the website should reside in this folder. Note that you are already provided with all the images inside this folder which will be used in the website.
28+
2729
4. You can use HTML5, CSS3, Bootstrap, JavaScript, FontAwesome icons, and Google Fonts.
2830

2931
## Version Control Best Practices
@@ -35,28 +37,31 @@ You should create a master repository for the application, and push the initial
3537
Please follow the following best practices when using Git and GitHub to strive towards becoming a better software engineer:
3638

3739
- Commit your code often and frequently.
40+
3841
- Make small and incremental commits.
42+
3943
- Make sure your code works before committing it.
44+
4045
- Write brief and relevant commit messages.
4146

4247
# Part A: Creating the Homepage
4348

44-
:::info
4549
Relevant files to work on: index.html, index.js, header.js, index.css, header.css
4650

47-
:::
48-
4951
Once you download the zipped folder, you will see a file called "index.html" at the root level of that folder. You must open that file and add your code in that file.
5052

5153
This "index.html" file will be the file of your homepage. The final outcome of creating your homepage should look like this:-
5254

53-
![](misc/screenshots/homepage-screenshot.jpeg)
55+
![](https://images.upgrad.com/8232e452-e30d-4b57-9874-d600b2b02cdd-home.png)
5456

5557
Some very important things to keep in mind:
5658

5759
1. You must strictly keep HTML, CSS and Javascript portion of the code separate from each other (in separate files)
60+
5861
2. You must refer to the "index.css" file inside the "css" folder and define all your css inside that file (for the "index.html" file)
62+
5963
3. You must refer to the "index.js" file inside the "js" folder and define all your Javascript inside that file (for the "index.html" file)
64+
6065
4. Unless explicitly mentioned otherwise (for example, at some places, it might be mentioned that a certain button MUST be red in colour), you can customize your own CSS for any HTML element you want. However, please keep in mind that the overall appearance of any HTML page must be very similar (if not identical) to the outcome of the screen mentioned prior of each part of the assignment. This means that if certain elements are placed towards the top-right of the screen in the final outcome figure, they MUST be placed at the top-right corner ONLY, failing to do so will lead to deduction of marks. Note that there might be multiple ways in which a certain CSS effect can be achieved. So the exact syntax of the CSS code does not matter, but the overall appearance of any given page must be very similar to the expected outcome.
6166

6267
Let us now begin our step by step process of creating our homepage.
@@ -67,7 +72,7 @@ a) **Header** = You will be re-using it at many other places in the assignment.
6772

6873
This will be the header portion which should look like this:
6974

70-
![](misc/screenshots/homepage-screenshot-2.jpeg)
75+
![Header-Image](https://images.upgrad.com/0a0ec6ce-a90f-41ea-a9d2-d0a9da283d8b-header.png)
7176

7277
You are already provided with the Scribbler Logo and The tagline. You've also been provided with the buttons. You need to add functionality to them.
7378

@@ -85,4 +90,4 @@ b) The segment called "**postButtons**" consist of 2 buttons -
8590

8691
"**Create Post**"
8792

88-
![](misc/screenshots/homepage-screenshot-3.jpeg)
93+
![](https://images.upgrad.com/08da3e14-0a1f-43cd-85e5-c9cd37b4e2c1-buttons.png)

0 commit comments

Comments
 (0)