Use HTML, and Internal CSS to replicate this article as closely as possible. The paragraph text used is Lorem Ipsum and doesn't need to be the same. You can generate your own Lorem Ipsum text by going to: http://www.lipsum.com/ (Links to an external site.)Links to an external site. scroll down the page and you will see the link to generate paragraphs. Once you have created them, copy the paragraphs and paste them into your paragraph tags.
- Navigate to your class-projects folder (where we will be placing assignments).
$ cd /users/codetalk/desktop/class-projects
- Clone the news-article assignment into your htdocs folder with the following command:
$ git clone https://github.com/SJCCodeTalk/news-article.git
- Change your directory to the project folder.
$ cd news-article
- Remove Codetalk as the origin of the project with the following command.
$ git remote rm origin
-
Navigate to github.com's main page and select "Start a project". Name your project "news-article" and select, "Create repository." Copy and paste the commands from the page into terminal to connect your news-article folder to github.
-
Create your project
-
Upload your project by taking the following steps
$ git add .
NOTE: "." is a wildcard meaning add all changes that have happened rather than stating one specific file.
$ git commit -m "add message here"
NOTE: "add message here" should be updated to give a description as to what you did, such as, "completed assignment", "updated readme", "made changes to header"
$ git push
-
Update the readme file with a description of your project so that future employers or other students know what your objective for this project was.
-
Please follow the submission guideline for this project.