16 lines
392 B
HTML
16 lines
392 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Hello jQuery</title>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
|
<script src="hello.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<p class="greeting-id">The ID is </p>
|
|
<p class="greeting-content">The content is </p>
|
|
</div>
|
|
</body>
|
|
</html>
|