Project Icon

Web-Dev-For-Beginners

Microsoft全面Web开发课程 通过实践项目掌握编程基础

Microsoft提供的12周Web开发入门课程,涵盖JavaScript、CSS和HTML基础。通过24个实践项目如植物温室、浏览器扩展和太空游戏,培养编程技能。课程采用项目制学习,配合测验和讨论,帮助初学者掌握Web开发并提高学习效果。适合想要开始Web开发之旅的编程新手。

GitHub license GitHub contributors GitHub issues GitHub pull-requests PRs Welcome

GitHub watchers GitHub forks GitHub stars

Open in Visual Studio Code

Web Development for Beginners - A Curriculum

Learn the fundamentals of web development with our 12-week comprehensive course by Microsoft Cloud Advocates. Each of the 24 lessons dive into JavaScript, CSS, and HTML through hands-on projects like terrariums, browser extensions, and space games. Engage with quizzes, discussions, and practical assignments. Enhance your skills and optimize your knowledge retention with our effective project-based pedagogy. Start your coding journey today!

🧑‍🎓 Are you a student?

Visit Student Hub page where you will find beginner resources, Student packs and even ways to get a free certificate voucher. This is the page you want to bookmark and check from time to time as we switch out content monthly.

📣 Announcement - New Curriculum on Generative AI was just released!

Don't miss our NEW 12 lesson curriculum on generative AI!

Each lesson includes an assignment to complete, knowledge check and challenge to guide you on learning topics like:

  • prompting and prompt engineering
  • text and image app generation
  • search apps

Visit https://aka.ms/genai-beginners to get started!

🌱 Getting Started

Teachers, we have included some suggestions on how to use this curriculum. We'd love your feedback in our discussion forum!

Learners, for each lesson, start with a pre-lecture quiz and follow through with reading the lecture material, completing the various activities and check your understanding with the post-lecture quiz.

To enhance your learning experience, connect with your peers to work on the projects together! Discussions are encouraged in our discussion forum where our team of moderators will be available to answer your questions.

To further your education, we highly recommend exploring Microsoft Learn for additional study materials.

📋 Setting up your environment

This curriculum has a development environment ready to go! As you get started you can choose to run the curriculum in a Codespace (a browser-based, no installs needed environment), or locally on your computer using a text editor such as Visual Studio Code.

Create your repository

For you to easily save your work, it is recommended that you create your own copy of this repository. You can do this by clicking the Use this template button at the top of the page. This will create a new repository in your GitHub account with a copy of the curriculum.

Running the curriculum in a Codespace

In your copy of this repository that you created, click the Code button and select Open with Codespaces. This will create a new Codespace for you to work in.

Create codespace

Running the curriculum locally on your computer

To run this curriculum locally on your computer, you will need a text editor, browser and command line tool. Our first lesson, Introduction to Programming Languages and Tools of the Trade, will walk you through various options for each of these tools for you to select what works best for you.

Our recommendation is to use Visual Studio Code as your editor, which also has a built-in Terminal. You can download Visual Studio Code here.

  1. Clone your repository to your computer. You can do this by clicking the Code button and copying the URL:

    Copy your repository URL

    Then, open Terminal within Visual Studio Code and run the following command, replacing <your-repository-url> with the URL you just copied:

    git clone <your-repository-url>
    
  2. Open the folder in Visual Studio Code. You can do this by clicking File > Open Folder and selecting the folder you just cloned.

Recommended Visual Studio Code extensions:

  • Live Server - to preview HTML pages within Visual Studio Code
  • Copilot - to help you write code faster

📂 Each lesson includes:

  • optional sketchnote
  • optional supplemental video
  • pre-lesson warmup quiz
  • written lesson
  • for project-based lessons, step-by-step guides on how to build the project
  • knowledge checks
  • a challenge
  • supplemental reading
  • assignment
  • post-lesson quiz

A note about quizzes: All quizzes are contained in this app, for 48 total quizzes of three questions each. They are linked from within the lessons but the quiz app can be run locally; follow the instruction in the quiz-app folder. They are gradually being localized.

🗃️ Lessons

Project NameConcepts TaughtLearning ObjectivesLinked LessonAuthor
01Getting StartedIntroduction to Programming and Tools of the TradeLearn the basic underpinnings behind most programming languages and about software that helps professional developers do their jobsIntro to Programming Languages and Tools of the TradeJasmine
02Getting StartedBasics of GitHub, includes working with a teamHow to use GitHub in your project, how to collaborate with others on a code baseIntro to GitHubFloor
03Getting StartedAccessibilityLearn the basics of web accessibilityAccessibility FundamentalsChristopher
04JS BasicsJavaScript Data TypesThe basics of JavaScript data typesData TypesJasmine
05JS BasicsFunctions and MethodsLearn about functions and methods to manage an application's logic flowFunctions and MethodsJasmine and Christopher
06JS BasicsMaking Decisions with JSLearn how to create conditions in your code using decision-making methodsMaking DecisionsJasmine
07JS BasicsArrays and LoopsWork with data using arrays and loops in JavaScriptArrays and LoopsJasmine
08TerrariumHTML in PracticeBuild the HTML to create an online terrarium, focusing on building a layoutIntroduction to HTMLJen
09TerrariumCSS in PracticeBuild the CSS to style the online terrarium, focusing on the basics of CSS including making the page responsiveIntroduction to CSSJen
10TerrariumJavaScript Closures, DOM manipulationBuild the JavaScript to make the terrarium function as a drag/drop interface, focusing on closures and DOM manipulationJavaScript Closures, DOM manipulationJen
11Typing GameBuild a Typing GameLearn how to use keyboard events to drive the logic of your JavaScript appEvent-Driven ProgrammingChristopher
12Green Browser ExtensionWorking with BrowsersLearn how browsers work, their history, and how to scaffold the first elements of a browser extensionAbout BrowsersJen
13Green Browser ExtensionBuilding a form, calling an API and storing variables in local storageBuild the JavaScript elements of your browser extension to call an API using variables stored in local storageAPIs, Forms, and Local StorageJen
14Green Browser ExtensionBackground processes in the browser, web performanceUse the browser's background processes to manage the extension's icon; learn about web performance and some optimizations to makeBackground Tasks and PerformanceJen
15Space GameMore Advanced Game Development with JavaScriptLearn about Inheritance using both Classes and Composition and the Pub/Sub pattern, in preparation for building a gameIntroduction to Advanced Game DevelopmentChris
16Space GameDrawing to canvasLearn about the Canvas API, used to draw elements to a screenDrawing to CanvasChris
17Space GameMoving elements around the screenDiscover how elements can gain motion using the cartesian coordinates and the Canvas APIMoving Elements AroundChris
18Space GameCollision detectionMake elements collide and react to each other using keypresses and provide a cooldown function to ensure performance of the gameCollision DetectionChris
19Space GameKeeping scorePerform math calculations based on the game's status and performanceKeeping ScoreChris
20Space GameEnding and restarting the gameLearn about ending and restarting the game, including cleaning up assets and resetting variable valuesThe Ending ConditionChris
21Banking AppHTML Templates and Routes in a Web AppLearn how to create the scaffold of a multipage website's architecture using routing and HTML templatesHTML Templates and RoutesYohan
22Banking AppBuild a Login and Registration FormLearn about building forms and handling validation routinesFormsYohan
23Banking AppMethods of Fetching and Using DataHow data flows in and out of your app, how to fetch it, store it, and dispose of itDataYohan
24Banking AppConcepts of State ManagementLearn how your app retains state and how to manage it programmaticallyState ManagementYohan

🏫 Pedagogy

Our curriculum is designed with two key pedagogical principles in mind:

  • project-based learning
  • frequent quizzes

The program teaches the fundamentals of JavaScript, HTML, and CSS, as well as the latest tools and techniques used by today's web developers. Students will have the opportunity to develop hands-on experience by building a typing game, virtual terrarium, eco-friendly browser extension, space-invader-style game, and a banking app for businesses. By the end of the series, students will have gained a solid understanding of web development.

🎓 You can take the first few lessons in this curriculum as a Learn Path on Microsoft Learn!

By ensuring that the content aligns with projects, the process is made more engaging for students and retention of concepts will be augmented. We also wrote several starter lessons in JavaScript basics to introduce concepts, paired with a video from the "Beginners Series to: JavaScript" collection of video tutorials, some of whose authors contributed to this curriculum.

In addition, a low-stakes quiz before a class sets the intention of the student towards learning a topic, while a second quiz after class ensures further retention. This curriculum was designed to be flexible and fun and can be taken in whole or in part. The projects start small and become increasingly complex by the end of the 12-week cycle.

While we have purposefully avoided introducing JavaScript frameworks to concentrate on the basic skills needed as a web developer before adopting a framework, a good next step to completing this curriculum would be learning about Node.js via another collection of videos: "[Beginner Series to:

项目侧边栏1项目侧边栏2
推荐项目
Project Cover

豆包MarsCode

豆包 MarsCode 是一款革命性的编程助手,通过AI技术提供代码补全、单测生成、代码解释和智能问答等功能,支持100+编程语言,与主流编辑器无缝集成,显著提升开发效率和代码质量。

Project Cover

问小白

问小白是一个基于 DeepSeek R1 模型的智能对话平台,专为用户提供高效、贴心的对话体验。实时在线,支持深度思考和联网搜索。免费不限次数,帮用户写作、创作、分析和规划,各种任务随时完成!

Project Cover

白日梦AI

白日梦AI提供专注于AI视频生成的多样化功能,包括文生视频、动态画面和形象生成等,帮助用户快速上手,创造专业级内容。

Project Cover

有言AI

有言平台提供一站式AIGC视频创作解决方案,通过智能技术简化视频制作流程。无论是企业宣传还是个人分享,有言都能帮助用户快速、轻松地制作出专业级别的视频内容。

Project Cover

讯飞绘镜

讯飞绘镜是一个支持从创意到完整视频创作的智能平台,用户可以快速生成视频素材并创作独特的音乐视频和故事。平台提供多样化的主题和精选作品,帮助用户探索创意灵感。

Project Cover

讯飞文书

讯飞文书依托讯飞星火大模型,为文书写作者提供从素材筹备到稿件撰写及审稿的全程支持。通过录音智记和以稿写稿等功能,满足事务性工作的高频需求,帮助撰稿人节省精力,提高效率,优化工作与生活。

Project Cover

阿里绘蛙

绘蛙是阿里巴巴集团推出的革命性AI电商营销平台。利用尖端人工智能技术,为商家提供一键生成商品图和营销文案的服务,显著提升内容创作效率和营销效果。适用于淘宝、天猫等电商平台,让商品第一时间被种草。

Project Cover

Trae

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

Project Cover

AIWritePaper论文写作

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

投诉举报邮箱: service@vectorlightyear.com
@2024 懂AI·鲁ICP备2024100362号-6·鲁公网安备37021002001498号