Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

CSS_JS_examples

<!DOCTYPE html>
<html>
<head>
<style>
h1{color: red;}
#para_bold {
   font-weight: bold;
    
}
.para_smallfont {font-style: italic;;}
    
</style>

<title>Web Page Design</title>

<script>

function sayHello() {
   document.write("Hello, Coding Ground!");
}
sayHello();

</script>
</head>
<body>
<h1> Section 1</h1>

<p id = "para_bold"> This paragraph will be in bold</p>
<p class = "para_smallfont"> This is a smaller font paragraph</p>
<p class = "para_smallfont" > this is another smaller font paragraph</p>

<h1> Section 2</h1>
</body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.