JavaScript Output Activity
JavaScript Output Activity
JavaScript Output Activity
<!DOCTYPE html>
<html>
<head>
<title>Activity</title>
<style type="text/css">
.abc{
font-size: 20px;
color: red;
background-color: yellow;
border: none;
border-radius: 5px;
width:70px;
height: 30px;
}
</style>
</head>
<body>
<h1 style="color: blue;">JavaScript Output Activity</h1>
<p style="font-size: 22px; font-weight: bold;">My Name is:</p>
<p id="abc"></p>
<script type="text/javascript">
// .innerHTML
document.getElementById("abc").innerHTML= "Muhammad Bin Jameel";
// document.write
document.write("BSc Civil Engineer");
// window.alert
window.alert('Assalam-o-Alaikum!');
// console.log
console.log('No error');
console.log('Error solved');
</script><br><br>
<button class="abc" type="button" onclick="document.write(13+13)">Age</button>
</body>
</html>
No comments:
Post a Comment