Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 29 additions & 36 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,30 @@
[logo]: http://www.goodylabs.com/assets/logo-c011d0a0fa8c64e1d6c284405fc2155d.png
[this_repo]: https://github.com/goodylabs/internship-exercise1
[github_join_page]: https://github.com/join
[git_getting_started]: http://git-scm.com/book/en/v2/Getting-Started-About-Version-Control
[git_github_account]: http://git-scm.com/book/en/v2/GitHub-Account-Setup-and-Configuration
[git_github_contributing_to_a_project]: http://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project
[git_working_with_remotes]: http://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes
[html_w3schools]: http://www.w3schools.com/html
[get_bootstrap]: http://getbootstrap.com/
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap Case</title>
<meta charset="utf-8">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">

</head>

<body>

<p><b>First name: </b>Sanjana</p>
<p><b>Last name: </b>Sandeep</p>
<p><b>Hobbies: </b>Sleeping</p>
<a href="https://twitter.com/goodylabs">Visit goodylabs FTW!</a>
<div class="container">
<div class="jumbotron">
<p>My 3 latest achievements</p>
</div>
</div>
<div class="container">
<p>1. Getting a job offer in a Multinational firm </p>
<p>2.Publishing an article in a national news paper</p>
<p>3.Coded for 12 hours at a stretch</p>
</div>
</body>

</html>

![goodylabs][logo]

goodylabs internship exercise 1
===============================

Purpose of this document
------------------------

This first excercise is to verify that you can:

1. find information on the web
2. acquire basic skills about HTML and CSS
3. learn and use version control system

List of tasks:
--------------

1. If you do not have a GitHub account yet, please go to [GitHub join page][github_join_page] and register. You will get a free account, no worries - no credit card is required. If you are lost, [this][git_github_account] might help ;)
2. Fork [this][this_repo] repository using any git client. If you do not know what forking, git or a repository is, please visit [this][git_getting_started] site and acquire some knowledge. A brief summary is also available [here][git_github_contributing_to_a_project].
3. Create one simple HTML page with: your first name, your last name, list of your hobbies and a social link to @goodylabs twitter account - use only proper HTML conventions, forget about styling at this stage. If you do not know what HTML is, please visit [this][html_w3schools] site.
4. Commit your changes with a meaningful commit message.
5. Apply [Bootstrap][get_bootstrap] to your HTML page by using simplest Jumbotron template - put your three latest achievements in three example columns.
6. Commit your changes with a meaningful commit message.
7. Push your changes from your local computer to your GitHub repository. If you do not know how to do it, please refer to [Git SCM page][git_working_with_remotes].
8. Send a pull request to goodylabs/internship-excercise1. This point is not mandatory, however it might speed up the verification process :) If you do not know how to do it, [this][git_github_contributing_to_a_project] might help here.

You're done ;)
36 changes: 36 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

<html>

<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
</head>

</head>

<body>
<p align="right"><font size="3" color="darkred"><a href="https://twitter.com/goodylabs">Visit goodylabs FTW!</a></font></p>
<p style="color:darkred"><b>First name: </b>Sanjana</p>
<p style="color:darkred"><b>Last name: </b>Sandeep</p>
<p style="color:darkred"><b>Hobbies: </b>Sleeping</p>

<div class="container">
<div class="jumbotron" style="background-color:darkred">
<center><h1>My 3 latest achievements</h1></center>
</div>
</div>
<div class="container">
<table style="width:100%">
<col align="left">
<col align="left">
<col align="right">
<tr>
<th>Getting a job offer in a Multinational firm </th>
<th>Publishing an article in a national news paper</th>
<th>Coded for 12 hours at a stretch</th>
</tr>
</table>
</div>
</body>

</html>