You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 8-code-editor/1-using-a-code-editor/assignment.md
+202-8Lines changed: 202 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,4 @@
1
-
# VSCode.dev Assignment
2
-
## Create a resume-website using vscode.dev
1
+
# Create a resume-website using vscode.dev
3
2
4
3
_How cool would it be to have a recruiter ask for your resume and you send them a url?_ 😎
5
4
@@ -19,7 +18,6 @@ TODO: add an optional image
19
18
After this assignment, you'll learn how to:
20
19
21
20
- Create a website to showcase your resume
22
-
-_Optional_ - Launch your resume website to the Cloud for free
23
21
24
22
### Prerequisites
25
23
@@ -29,7 +27,14 @@ After this assignment, you'll learn how to:
29
27
30
28
**Step 1:** Create a new GitHub Repository and give it a name `my-resume`
31
29
32
-
**Step 2:** Open [VSCode.dev](https://vscode.dev) and select the `Open Remote Repository` button
30
+
31
+
**Step 2** Create an `index.html` file in your repository. We will add at least one file while still on github.com because you cannot open an empty repository on vscode.dev
32
+
33
+
Click the `creating a new file` link, type in the name `index.html` and select the `Commit new file` button
34
+
35
+

36
+
37
+
**Step 3:** Open [VSCode.dev](https://vscode.dev) and select the `Open Remote Repository` button
33
38
34
39
Copy the url to the repository you just created for your resume site and paste it in the input box:
35
40
@@ -39,10 +44,199 @@ _Replace `your-username` with your github username_
39
44
https://github.com/your-username/my-resume
40
45
```
41
46
42
-
✅ If succesful, you'll see all files for this repository loaded in the text editor.
<a href="linkedin.com/yourLinkedInUsername">Write your username here!</a>
88
+
</p>
89
+
</section>
90
+
<section>
91
+
<h2>SKILLS</h2>
92
+
<!-- your skills -->
93
+
<ul>
94
+
<li>Skill 1!</li>
95
+
<li>Skill 2!</li>
96
+
<li>Skill 3!</li>
97
+
<li>Skill 4!</li>
98
+
</ul>
99
+
</section>
100
+
<section>
101
+
<h2>EDUCATION</h2>
102
+
<!-- your education -->
103
+
<h3>Write your course here!</h3>
104
+
<p>
105
+
Write your institution here!
106
+
</p>
107
+
<p>
108
+
Start - End Date
109
+
</p>
110
+
</section>
111
+
</article>
112
+
<article id="mainRight">
113
+
<section>
114
+
<h2>ABOUT</h2>
115
+
<!-- about you -->
116
+
<p>Write a blurb about yourself!</p>
117
+
</section>
118
+
<section>
119
+
<h2>WORK EXPERIENCE</h2>
120
+
<!-- your work experience -->
121
+
<h3>Job Title</h3>
122
+
<p>
123
+
Organization Name Goes Here | Start Month – End Month
124
+
</p>
125
+
<ul>
126
+
<li>Task 1 - Write what you did!</li>
127
+
<li>Task 2 - Write what you did!</li>
128
+
<li>Write the outcomes/impact of your contribution</li>
129
+
130
+
</ul>
131
+
<h3>Job Title 2</h3>
132
+
<p>
133
+
Organization Name Goes Here | Start Month – End Month
134
+
</p>
135
+
<ul>
136
+
<li>Task 1 - Write what you did!</li>
137
+
<li>Task 2 - Write what you did!</li>
138
+
<li>Write the outcomes/impact of your contribution</li>
139
+
140
+
</ul>
141
+
</section>
142
+
</article>
143
+
</main>
144
+
</body>
145
+
</html>
146
+
</details>
147
+
148
+
Add your resume details to replace the _placeholder text_ on the html code
149
+
150
+
**Step 5:** Hover on the My-Resume folder, click the `New File ...` icon and create 2 new files in your project: `style.css` and `codeswing.json` files
151
+
152
+
**Step 6:** Open the `style.css` file, paste in the code below and save
153
+
154
+
<details>
155
+
<summary><b>CSS code to format the layout of the site.</b></summary>
**Step 6:** Open the `codeswing.json` file, paste in the code below and save
218
+
219
+
{
220
+
"scripts": [],
221
+
"styles": []
222
+
}
223
+
224
+
225
+
**Step 7:** Install the `Codeswing extension` to visualize the resume website on the code area. Immediately after installing the extension, observe your code area to see the changes to your project 😃
226
+
227
+
Click the _`Extensions`_ icon on the activity bar and type in Codeswing. Either click the _blue install button_ on the expanded activity bar to install or use the install button that appears on the code area once you select the extension to load additional information.
This is what you will see on your on your screen after you install the extension.
232
+
233
+

234
+
235
+
If you are satisfied with the changes you made, hover on the 'Changes' folder and click the + button to stage the changes. Staging simply means preparing your changes to commit them to GitHub.
236
+
237
+
Then, type in a commit message _(A description of the change you have made to the project)_ and commit your changes by clicking the 'tick'.Once done working on your project, select the hamburger menu icon at the top left to return to the repository on GitHub.
238
+
239
+
Congratulations 🎉 You have just created your resume website using vscode.dev in few steps.
46
240
## 🚀 Challenge
47
241
48
242
Open a remote repository you have permissions to make changes and update some files. Next, try creating a new branch with your changes and make a Pull Request.
0 commit comments