diff --git a/codeExamples/week1/IntroHtmlCode/BasicHTMLSkeleton.html b/codeExamples/week1/IntroHtmlCode/BasicHTMLSkeleton.html new file mode 100644 index 0000000000000000000000000000000000000000..c8cbbaaf0a026ddf338c54f6d95a7b116490552b --- /dev/null +++ b/codeExamples/week1/IntroHtmlCode/BasicHTMLSkeleton.html @@ -0,0 +1,20 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8" /> + <!-- For responsive page --> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <meta name="description" content="Basic HTML5 Document" /> + <meta name="keywords" content="HTML5, Responsive, CMSC389N"/> + <link href="favicon.ico" rel="icon" type="image/x-icon" /> + <title>HTML TEMPLATE</title> + </head> + + <body> + <ol type = "I"> + <li>Shakira</li> + <li>JLo</li> + + </ol> + </body> +</html>