Influences What Pages Looks Like
Influences What Pages Looks Like
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