As you can see in the following screenshot, we have an empty folder called advanced-wp-html, and we'll create a couple of files here. First, we'll create an index.html file, and then we'll create our style sheet, which will just be style.css.
Let's open both the files with Sublime editor. In the index.html file, add in our core html markup, as shown in the following code block:
<!DOCTYPE html><html><head> <title></title></head><body></body></html>
We'll update the code, as shown here:
<!DOCTYPE html><html><head> <title>Advanced WP Theme</title></head><body> <header> <div class="container"> <h1>Advanced Wordpress Theme</h1> </div> </header></body></html>
Here, we have Advanced WP Theme as the title and added a link to ...