-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
16 lines (16 loc) · 715 Bytes
/
index.html
File metadata and controls
16 lines (16 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
<link type="stylesheet" src="css/index.css"> <!--link of external css file -->
<link rel="icon" href="https://cdn1.byjus.com/blog/2018/03/15174826/favicon.png" sizes="32x32">
</head>
<body style="text-align: center;">
<h1>Welcome To JavaScript Basics</h1>
<p id="helloWorld"></p>
<button id="viewbtn">View Date</button> <!--Call a function from external JS named as viewDate()-->
</body>
<script>
document.getElementById("helloWorld").innerHTML = "Hello!!"; //Change the content of html from JavaScript>
</script>
</html>
<script type="text/javascript" src="js/index.js"></script> <!--link of external JS file -->