Skip to content

Commit

Permalink
introducing errors for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
OnkarRuikar committed Jul 28, 2023
1 parent 952ba0b commit 2bc83ae
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions files/en-us/games/index.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,33 @@
---
title: Game development
slug: Games
page-type: landing-page
slug: Games
---

{{GamesSidebar}}

Gaming is one of the most popular computer activities. New technologies are constantly arriving to make it possible to develop better and more powerful games that can be run in any standards-compliant web browser.

## Develop web games
```css
body { background-color: aqua; }
div {
color: red;
}
```

# Develop web games

Welcome to the MDN game development center! In this area of the site, we provide resources for web developers wanting to develop games. You will find many useful tutorials and technique articles in the main menu on the left, so feel free to explore.

* item 1
+ item 2
- item 3

We've also included a reference section so you can easily find information about all the most common APIs used in game development.

> **Note:** Creating games on the web draws on a number of core web technologies such as HTML, CSS, and JavaScript. The [Learning Area](/en-US/docs/Learn) is a good place to go to get started with the basics.
## Port native games to the Web
## Port native games to the Web

If you are a native developer (for example writing games in C++), and you are interested in how you can port your games over to the Web, you should learn more about our [Emscripten](https://emscripten.org/index.html) tool — this is an LLVM to JavaScript compiler, which takes LLVM bytecode (e.g. generated from C/C++ using Clang, or from another language) and compiles that into [asm.js](/en-US/docs/Games/Tools/asm.js), which can be run on the Web.

Expand Down

0 comments on commit 2bc83ae

Please sign in to comment.