-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-4.html
32 lines (24 loc) · 979 Bytes
/
page-4.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
<link rel="stylesheet" type="text/css" href="stylesheets/styles.css">
</head>
<body>
<h1>CUNY Tech Prep</h1>
<!-- Here we apply the .colorred class from our css file.
class is an attribute that can be applied to any HTML tag.
-->
<p class="colorred">Week 1 and we're learning about HTML and CSS! This text is within a paragraph tag. We can select some text to be <strong>BOLD</strong> or <em>emphasized</em>!</p>
<!-- This is an HTML Comment. The content between the comment tags will be ignored by the browser, but it will still be present in the HTML document
<p>This is a second paragraph.</p>
-->
<ol>
<li>HTML+CSS <a href="http://www.w3schools.com">Link to W3Schools</a></li>
<li class="colorred">JavaScript</li>
<li>Play Framework</li>
<li>Postgresql</li>
</ol>
An Image: <img src="colorpicker.png" />
</body>
</html>