# HTML In this activity, we'll explore HTML, metadata about our pages, and the W3C validation service to ensure we're creating valid HTML. ## Create a Static Web Page To start, we will work on a static web page. Choose from one of the following options around which to design your website: - Create your personal website or web page - You are encouraged to explore and experience with HTML to design your own page and layout. - Create a static page of a website of your choice (be creative!) - This could be a website around a shared hobby, a new business idea, etc! 1. Design your web page — you are recommended to draw the UI without coding or implementation. 2. Transform your drawing into an HTML file. - Create an HTML file to be the main/first page of your site. Therefore, you should name the file `index.html` (not `index.htm`). - **Question:** Why do we use this naming convention? See [Apache's documentation](https://httpd.apache.org/docs/2.4/mod/mod_dir.html#directoryindex). 3. Include the following HTML framework for your page. Note that the document type is defined as HTML (``). ```html ``` 4. Inside the `` element, Add `` element containing the title of the page. ```html <title>Your Title Here ``` 5. Inside the `` element, add *at least* the following elements: - `
` element to help semantically structure the web page. - Include a heading `

` with the title or a strong heading. - A smaller subheading `

` element containing tagline or some important phrase. - *Note: observe how content in `

` and `

` are displayed by default.* - A `