Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions exercises/final.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<head>
<style>
td,th {
border: solid red;
}
</style>
</head>

<a href="">Logo HERE</a>


<ul>
<li><a href="">Home</a></li>
<li><a href="">About</a></li>
<li><a href="">Personal Projects</a></li>
<li><a href="">Contact</a></li>

</ul>

<h2>My Page</h2>
<h3>Yup!!</h3>
<img src="https://lh3.googleusercontent.com/proxy/gSIlTP2tWtHDr-PAqbT7tyX7_0pkIWLfWgCFc5CR2ys3dFV7A-Z6s0HfkVPnWmBs8X5gy9kXvnnkcFNqTzNg-NbCnsdj-mgXFwD_xSYP6jKMFHG1qcficxK2nwsSA20KPdfLVg" />
<p>Lorem ipsum dolor sit amet,
<strong>consectetur</strong> adipisicing elit,set do eiusmod
</p>
<table>
<thead>
<tr>
<th>Mornings</th>
<th>Evenings</th>
<th>Nights</th>
</tr>
</thead>
<tbody>
<tr>
<td>Wake Up</td>
<td>Wake Up Again</td>
<td>Finally</td>
</tr>
<tr>
<td>Eat,exercise,Watch TV at the same time</td>
<td>Still Waking Up</td>
<td>On with my day</td>
</tr>
<tr>
<td>Sleep</td>
<td>Never mind</td>
<td>Sleep</td>
</tr>
</tbody>
</table>

<br /> No Copy Rights
20 changes: 20 additions & 0 deletions exercises/first.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<head>
<title>First Exercise Page 22</title>
</head>

<a href="">Logo here</a>


<ul>
<li><a href="">Home</a></li>
<li><a href="">About</a></li>

<ul>
<li><a href="">Company</a></li>
<li><a href="">Partners</a></li>
<li><a href="">Our People</a></li>
</ul>

<li><a href="">Personal Projects</a></li>
<li><a href="">Contact</a></li>
</ul>
14 changes: 14 additions & 0 deletions exercises/login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<h1>Login Page</h1>
<form>
<br /><label for="email">Email</label>
<input id="email" type="email" name="email"
type="text" placeholder="Enter your Email" />

<br /><label for="password">Password</label>
<input id="password" type="password" name="password"
type="text" placeholder="Enter your Password"/>
<br /><button class="login">Login</button>
</form>
</html>
45 changes: 45 additions & 0 deletions exercises/register.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html>
<h1>Register Page</h1>
<form>
<br /><label for="First Name">First name</label>
<input id="firstname" name="fname" type="text"
placeholder="Enter your First Name" />

<br /><label for="Last Name">Last name</label>
<input id="Lastname" name="lname"
type="text" placeholder="Enter your Last Name" />

<br /><label for="email">Email</label>
<input id="email" name="email"
type="text" placeholder="Enter your Email" />

<br /><label for="password">Password</label>
<input id="password" name="password"
type="text" placeholder="Enter your Password"/>

<br /><label for="confirmpassword">ConfirmPassword</label>
<input id="confirmpassword" name="confirmpassword"
type="text" placeholder="Confirm your Password"/>

<br /><label for="gender">Gender</label>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label>

<br /><label for="dob">Date of Birth</label>
<input id="dob" name="dob"
type="text" placeholder="mm/dd/yyyy"/>

<br /><label for="Habits">Habits</label>
<input type="checkbox" id="habit1" name="habit1" />
<label for="habit1"> You like sports</label>
<input type="checkbox" id="habit2" name="habit2" />
<label for="habit2"> You like to eat</label>
<input type="checkbox" id="habit3" name="habit3" />
<label for="habit3"> You like to sleep</label>

<br /><button class="register">Register</button>
</form>
</html>
4 changes: 2 additions & 2 deletions templates/body_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Basic HTML document</title>
</head>
<body>
Page content
The main page content appears inside the body tag. HTML contains several elements that allow you to properly structure and format your content, which we'll cover later.
<h1>Page content</h1>
The main page content appears inside the <b>body</b> tag. HTML contains several elements that allow you to properly structure and format your content, which we'll cover later.
</body>
</html>
13 changes: 7 additions & 6 deletions templates/headings_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>Formatting page content</title>
<!--<title>Formatting page content</title> -->

</head>
<body>
HTML Essential Training
Formatting page content
<h1>HTML Essential Training</h1>
<h2>Formatting page content</h2>
In this series of exercises, we'll explore how to use HTML elements to format basic page content.
Adding headings
<h3>Adding headings</h3>
Headings help define the structure of the page and control the hierarchy of the content. You can use heading values ranging from a top-level heading of h1 all the way down to an h6. While there are several competing theories on the exact strategy to use when choosing headings, what really matters is that you are using them in an intelligent manner, to accurately reflect the importance of your content. It's also important to be consistent in how you use headings across your site, so deciding on when and how to use headings is an important part of planning your site.
Using paragraphs
<h3>Using paragraphs</h3>
The paragraph tag (&lang;p&rang;) is one of the most basic formatting tags, and one that you'll use often. It indicates a paragraph of text, and should be used for each individual paragraph.
Line breaks
<<h3>Line breaks</h3>
Occasionally you'll need to perform a "soft return," that is, create a new line without using a new paragraph. To do that in HTML, you use the line break tag (&lang;br&rang;). Line break tags are inline, meaning you can use them within headers and paragraphs, and don't require a closing tag.
Let's say you were formatting an address, for example. You could use line breaks to make sure each line of the address appeared on a separate line, but still remained within the same paragraph.
lynda.com 6410 Via Real Carpinteria, CA 93103.
Expand Down
34 changes: 23 additions & 11 deletions templates/models_template.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="A page for exploring HTML content models">
<title>Content models</title>
</head>
<body>
Content models
In HTML 4 there were only two main content models, block and inline level elements. Block level elements would stack on top of each other in normal document flow while inline level elements typically appear within the flow of text content.
In this example the heading 1 and the paragraphs are block level items, while the bold tags and the link below are examples of inline level elements.
In HTML5 new content models have been created to expand the structure and semantic capabilities of HTML. There are seven main models: Flow, Metadata, Embedded, Interactive, Heading, Phrasing, and Sectioning. To learn more about them, visit the interactive graphic contained in the W3C HTML5 specfication.
</body>

<head>
<meta charset="utf-8">
<meta name="description" content="A page for exploring HTML content models">
<title>Content models</title>
</head>

<body>
<h1>Content Models</h1>
In HTML 4 there were only two main content models, block and inline level elements. <b>Block level</b> elements
would stack on top of each other in normal document flow while <b>inline level</b> elements typically appear
within the flow of text content.

<br />In this example the <b>heading 1</b> and the <b>paragraphs</b> are block level items, while the bold tags and
the link below are examples of inline level elements.
</br>

<br />In HTML5 new content models have been created to expand the structure and semantic capabilities of HTML.
There are seven main models:<b> Flow, Metadata, Embedded, Interactive, Heading, Phrasing, and Sectioning.</b> To
learn more about them, visit the <a href="#" target="_blank"> interactive graphic</a> contained in the W3C HTML5 specfication.
</br>
</body>

</html>

6 changes: 5 additions & 1 deletion templates/syntax_template.html
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
HTML uses tags to identify page content. This text, for example, is a paragraph.
<html>
HTML uses tags to identify page content.
<i>This text, for example, is a </i> <b>paragraph.</b>

</html>
1 change: 1 addition & 0 deletions travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
language : java