Lect 01-SET 372-Internet Web Programming - HTML 1
Lect 01-SET 372-Internet Web Programming - HTML 1
Introduction to Internet
01 Programming
Course Objective.
Introduction to HTML
HTML tags
Summary
The front end is referred to a web design, the only real option for front-end native languages and basically the
standard is Javascript/HTML/CSS. But there are many variations on JavaScript that are used.
Architecture of web application
Introduction to
the Development
of Web Applications
Using ASP .Net
(Core) MVC
by Robin Nixon
You can start working on this from the first week of the class
Professional Style
Interactive
Introduction
Mozilla Firefox
Apple Safari
Google Chrome
Opera
Example: http://dept.ju.edu/cs/index.html
Examples:
Apache
Not limited to just HTTP. It can be provided other protocol support such as RMI/RPC
Have components and features to support services such as Connection Pooling, Messaging
services.
Examples:
Glassfish
WebSphere
Basic HTML
Front-End Developer.
Back-End Developer.
In addition to mastering HTML and CSS, they also knows how to:
Environment
output
Harry Potter
Books
Harry Potter and the Philosopher’s Stone
output
First Paragraph
Second Paragraph
syntax:
Some tags don't contain content; can be opened and closed in one tag
syntax:
Examples:
Tags must be correctly nested: a closing tag must match the most recently
opened tag
Links or anchors are inline elements, so they must be placed inside a block
element such as a p or h1
<p>
Search <a href="http://www.google.com/">Google</a>
now!
</p>
HTML
HTML
<a href="http://harrypotter.net/">
<img src="images/dumbledore.jpg"
alt=“Dumbledore from Harry Potter"
title="Alas! Ear wax!"/> </a>
HTML
<ul>
<li>Harry Potter characters:
<ul>
<li>Harry Potter</li> • Harry Potter characters:
<li>Hermione</li> • Harry Potter
<li>Ron</li>
• Hermione
</ul>
</li> • Ron
<li>LOTR characters: • LOTR characters:
<ul> • Frodo
<li>Frodo</li> • Bilbo
<li>Bilbo</li> • Sam
<li>Sam</li> output
</ul>
</li>
</ul> HTML
table defines the overall table, tr each row, and td each cell
<table >
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
<tr>
<td>Centro comercial Moctezuma</td>
<td>Francisco Chang</td>
<td>Mexico</td>
</tr>
</table>
<table >
<caption>Important data</caption>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
<tr>
<td>Centro comercial Moctezuma</td>
<td>Francisco Chang</td>
<td>Mexico</td>
</tr>
</table>
<p>
The <code>ul</code> and <code>ol</code>
tags make lists.
</p> HTML
The ul and ol tags make lists.
output
Displayed with exactly the whitespace / line breaks given in the text
When showing a large section of computer code, enclose it in a pre to preserve whitespace
and a code to describe the semantics of the content
<pre><code>
public static void main(String[] args) {
System.out.println("Hello, world!");
}
</code></pre> HTML
public static void main(String[] args) {
System.out.println("Hello, world!");
}
output
https://www.w3schools.com/html/
https://www.geeksforgeeks.org/html/