1
0
Fork 0

💁🐜 Checkpoint

./index.html:7435365/93
./script.js:7435365/51
This commit is contained in:
Glitch (hello-webpage) 2019-10-06 16:50:49 +00:00
parent 78f98aaace
commit 36109cf9be
2 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,7 @@
<link rel="stylesheet" href="/style.css">
<!-- import the webpage's javascript file -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="/script.js" defer></script>
</head>
<body>

View File

@ -3,3 +3,7 @@
// prints "hi" in the browser's dev tools console
console.log("hi");
$(function() {
alert('Hello, world!')
})