<!DOCTYPE html> <html> <head> <title>Hello World!</title> </head> </html>
<?php /* Template Name: The technical fist Wordpress*/ ?> <html> <head> <?php wp_header(); ?> <?php wp_page_menu(); ?> </head> <?php wp_list_pages(); ?> <?php wp_footer(); ?> </html>
<!DOCTYPE html> <html> <head> <title>Hello World!</title> </head> <body> <div>This is HTML text!</div> </body> </html>