JavaScript import to html
<html>
<head>
<script language="javascript" type="text/javascript">
function message()
{
alert("Hello bilal");
}
</script>
</head>
<body>
<a href="javascript:message()"> Mesajimiz ne bakim</a>
</body>
</html>