Files
freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/responsive-web-design-projects/build-a-personal-portfolio-webpage.chinese.md
ZhichengChen add8af389e fix(i18n): update Chinese translation of responsive web design projects (#37925)
* fix(i18n): update chinese translation of responsive web design projects

* fix(i18n): update review suggestion

* fix(i18n): update review suggestion

* fix(i18n): update review suggestion
2019-12-22 12:24:13 -08:00

59 lines
3.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: bd7158d8c242eddfaeb5bd13
title: Build a Personal Portfolio Webpage
isRequired: true
challengeType: 3
forumTopicId: 301143
localTitle: 制作一个个人作品集网页
---
## Description
<section id='description'>
<strong>目标:</strong>使用 <a href='https://codepen.io' target='_blank'>CodePen.io</a> 搭建一个与这个功能上相似的 app<a href='https://codepen.io/freeCodeCamp/full/zNBOYG' target='_blank'>https://codepen.io/freeCodeCamp/full/zNBOYG</a>
在满足以下<a href='https://en.wikipedia.org/wiki/User_story' target='_blank'>需求</a>并通过所有测试的前提下,你可以根据自己的喜好来美化你的 app。
你可以使用 HTML、JavaScript 以及 CSS 来完成项目。由于目前你只学到了 CSS 课程,所以我们建议你只使用 CSS 来完成这个项目,同时巩固一下你之前所学的内容。你也可以使用 Bootstrap 或者 SASS。我们不推荐你在这个项目中使用其他技术比如 jQurey、React、Angular 或 Vue否则如果在编码中出现问题你需要自行解决。在后续的其他项目中你将有机会使用各种技术栈比如 React。如果你在使用上述推荐的技术栈编码的过程中发现问题请提交给我们来处理。祝你编码愉快
<strong>需求 1</strong>我的作品集应该有一个 id 为<code>welcome-section</code>的欢迎区。
<strong>需求 2</strong>欢迎区内应该有一个包含标题的<code>h1</code>元素。
<strong>需求 3</strong>我的作品集应该有一个 id 为<code>projects</code>的项目区。
<strong>需求 4</strong>项目区至少包含一个带有<code>project-tile</code>类的元素来保存项目。
<strong>需求 5</strong>项目区至少包含一个被链接到一个项目的超链接元素。
<strong>需求 6</strong>我的作品集应有一个 id 为<code>navbar</code>的导航栏。
<strong>需求 7</strong>导航栏至少包含一个我可以跳转到本页另外区域的链接。
<strong>需求 8</strong>我的作品集应有一个 id 为<code>profile-link</code>的链接,它能在浏览器的新标签页内打开我的 GitHub 或者 FCC 作品集页面。
<strong>需求 9</strong>我的作品集至少使用一次媒体查询。
<strong>需求 10</strong>欢迎区的高度应该与视窗的高度保持一致。
<strong>需求 11</strong>导航栏应保持在视窗的顶部。
你可以通过 fork 这个项目 <a href='http://codepen.io/freeCodeCamp/pen/MJjpwO' target='_blank'>CodePen</a> 来构建你的项目,也可以使用此 CDN 链接在任何你喜欢的环境中运行测试:<code>https://gitcdn.link/repo/freeCodeCamp/testable-projects-fcc/master/build/bundle.js</code>
完成项目并通过所有测试后,输入你的项目在 CodePen 上的链接。
当你遇到问题的时候,记得使用 <a href='https://forum.freecodecamp.one/t/topic/157' target='_blank'>Read-Search-Ask</a> 方法。
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
tests: []
```
</section>
## Challenge Seed
<section id='challengeSeed'>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>