using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}
/*
New Features
1) New Semantic Elements − These are like <header>, <footer>, and <section>.
2) Forms 2.0 − Improvements to HTML web forms where new attributes have been introduced for <input> tag.
3) Persistent Local Storage − To achieve without resorting to third-party plugins.
4) WebSocket − A next-generation bidirectional communication technology for web applications.
5) Server-Sent Events − HTML5 introduces events which flow from web server to the web browsers and they are called Server-Sent Events (SSE).
6) Canvas − This supports a two-dimensional drawing surface that you can program with JavaScript.
7) Audio & Video − You can embed audio or video on your webpages without resorting to third-party plugins.
8) Geolocation − Now visitors can choose to share their physical location with your web application.
9) Microdata − This lets you create your own vocabularies beyond HTML5 and extend your web pages with custom semantics.
10) Drag and drop − Drag and drop the items from one location to another location on the same webpage.
<!DOCTYPE html>
<meta charset = "UTF-8">
<script src = "scriptfile.js"></script> not <script type = "text/javascript" src = "scriptfile.js"></script>
<link rel = "stylesheet" href = "stylefile.css"> not <link rel = "stylesheet" type = "text/css" href = "stylefile.css">
*/