0% found this document useful (0 votes)
57 views2 pages

Influences What Pages Looks Like

The document discusses the basics of HTML and how web pages work. It explains that when a user looks up a website, the request first goes to a Domain Name Server (DNS) that looks up the address and sends it to the user. It also outlines some key HTML elements like <html>, <head>, <body>, <p>, <h1-h6>, <img>, <a>, and <style> tags and how they are used to structure pages and add images, links, and styles. Styles are defined within <style> tags to specify properties like colors, fonts, and more.

Uploaded by

Connor Marshman
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
57 views2 pages

Influences What Pages Looks Like

The document discusses the basics of HTML and how web pages work. It explains that when a user looks up a website, the request first goes to a Domain Name Server (DNS) that looks up the address and sends it to the user. It also outlines some key HTML elements like <html>, <head>, <body>, <p>, <h1-h6>, <img>, <a>, and <style> tags and how they are used to structure pages and add images, links, and styles. Styles are defined within <style> tags to specify properties like colors, fonts, and more.

Uploaded by

Connor Marshman
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Hypertext market language HTML

Pages on internet=code=html
Look up websitedoesnt go straight to websitegoes to server DNS
Domain Name Server=DNS=request website and DNS looks it up and sends YOU
address (Phonebook)
Address takes you to web server
Basics of HTML
HTMLthings are made of elements
Parts of code that give instructions
OPENING and CLOSING TAGS <html>opening (info in between) and </html>
closing <p> </p>
<h2> </h2>
<html>
<head>
</head>
<body>
</body>
</html>
Influences what pages looks like
h 1 biggest h6 smallest
PICTURE
<img src= photoname.jpg alt= describe pic title=describe pic more specific/
>
LINK
<a href=about.html> click here </a>
STYLES
<style type=text/css>

H1{
Color:black;
}
P{
Font-size: 1.9em;
Color:white;
}
Body{
Background-color: #8FBC8F
Font-family: Verdana, Arial;
Margin: 30px;
}
</style>
<title> Hello </title> puts something in tab on top

You might also like