|
1 | 1 | <!DOCTYPE html> |
| 2 | +<!DOCTYPE html> |
2 | 3 | <html> |
3 | | - <head> |
4 | | - <meta charset="UTF-8"> |
5 | | - <title>My Site Title</title> |
6 | | - |
7 | | - <!-- Below is a link to your stylesheet, which should be located within your css folder --> |
8 | | - <link rel="stylesheet" type="text/css" href="css/style.css" /> |
9 | | - |
10 | | - </head> |
11 | | - <body> |
12 | | - |
13 | | - <!-- |
14 | | - A DIV is a major structural element representing a division or a section in HTML, |
15 | | - allowing you to group together other elements within it. If you have a panel, |
16 | | - or a group of elements that pertain to one section of the page, wrap them in |
17 | | - a div like this. |
18 | | - --> |
19 | | - <div id="container"> |
20 | | - <div class="myDiv"> |
21 | | - |
22 | | - <!-- |
23 | | - An H1 serves as the main title for the page. It is not the site title, which you |
24 | | - will want to update in the head section of your HTML. |
25 | | -
|
26 | | - An H1 should reflect what THIS page is about, and it is very important to adhere to |
27 | | - this standard for search engines. |
28 | | - --> |
29 | | - <h1>My Page Title</h1> |
30 | | - |
31 | | - <!-- |
32 | | - An IMG tag will allow you to display an image, either on your computer, or from |
33 | | - a url. |
34 | | -
|
35 | | - The alt attribute is important to include on every image. It should describe what the |
36 | | - picture is, and allows those using screen readers, or those who don't allow images to |
37 | | - display, to understand your site better. Search engines will penalize you if you |
38 | | - exclude them as well. |
39 | | -
|
40 | | - You can also use the site, lorempixel, to display random images. It can be great for |
41 | | - prototyping your design |
42 | | -
|
43 | | - <img src="http://lorempixel.com/400/200" alt="My random image"/> |
44 | | - --> |
45 | | - <img src="img/Peggy.jpg" alt="A picture of my grumpy cat, Peggy"/> |
46 | | - |
47 | | - <!-- |
48 | | - A P tag designates a paragraph of text. It will allow you to automatically indent sections, |
49 | | - and will format the text correctly for content. |
50 | | - --> |
51 | | - <p> |
52 | | - This is a paragraph. It will have line breaks if there is enough text. This is a fundamental element for creating page content. |
53 | | - Sometimes you will need <strong>bold</strong> text, and sometimes you will need <em>italicized</em> text. |
54 | | - </p> |
55 | | - </div> |
56 | | - |
57 | | - <div class="myDiv"> |
58 | | - <h2>My Second Most Important Heading</h2> |
59 | | - |
60 | | - <!-- |
61 | | - A UL tag designates an UNORDERED LIST. You can fill these with <li> elements, which |
62 | | - represent LIST ITEMS, which by default will be displayed with bullet points. |
63 | | - --> |
64 | | - <ul> |
65 | | - <li>An unordered list item</li> |
66 | | - <li>An unordered list item</li> |
67 | | - <li>An unordered list item</li> |
68 | | - </ul> |
69 | | - |
70 | | - <!-- |
71 | | - An OL tag designates an ORDERED LIST. This is similar to a UL, but will be shown with |
72 | | - numbers to their left instead of bullet points. |
73 | | - --> |
74 | | - <ol> |
75 | | - <li>My first list item</li> |
76 | | - <li>My second list item</li> |
77 | | - <li>My third list item</li> |
78 | | - </ol> |
79 | | - </div> |
80 | | - </div> |
81 | | - |
82 | | - <!-- |
83 | | - Below we link to a javascript file, located within our js folder |
84 | | -
|
85 | | - It is important to include your scripts here at the bottom of your body, allowing the |
86 | | - entire page to load before calling any of your javascript methods. It also speeds up page load times. |
87 | | - --> |
88 | | - <script type="text/javascript" src="js/script.js"></script> |
89 | | - </body> |
90 | | -</html> |
| 4 | +<head> |
| 5 | + <link rel="stylesheet" href="style.css" type="text/css" /> |
| 6 | +</head> |
| 7 | +<body> |
| 8 | +<center> |
| 9 | +<h1>Montana Code School Video Project</h1> |
| 10 | +</center> |
| 11 | + |
| 12 | +<p>Presenters from local tech companies regularly visit Montana Code School.</p> |
| 13 | +<li><b>Problem:</b> You're working during the day and you can't get to the presentations.</li> |
| 14 | +<p> |
| 15 | +<li><b>Solution:</b> Watch videos of the presentations online.</li> |
| 16 | +</p> |
| 17 | + |
| 18 | +<p> |
| 19 | +<center> |
| 20 | +<a href = "pg2.html">Proceed</a> |
| 21 | +</center> |
| 22 | +</p> |
| 23 | +</body> |
0 commit comments