Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

25 Feb 2015

External CSS Style Sheet

<head>
<link href="mystyle.css" rel="stylesheet" type="text/css" >
</head>


Internal CSS Style Sheet

<head>
<style>
body {
    background-color: green;
}
h1 {
    color: maroon;
    margin-right: 50px;
}
</style>
</head>

CSS Examples in Each Chapter

body {
    background-color: #d0e4fe;
}

h1 {
    color: green;
    text-align: center;
}

p {
    font-family: "lato";
    font-size: 40px;
}

8 Feb 2015

HTML Example

<html>
<head>
  <title>Page Title</title>
</head>

<body>

  <h1>My Heading</h1>

  <p>My Article Paragraph.</p>

</body>

</html>

VIEW