<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Template Literals</h1>
<script>
var str = `webtutor.dev`;
document.write(str);
</script>
</body>
</html>