You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
568 B
18 lines
568 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>30 Days of Javascript</title>
|
|
<link rel="stylesheet" href="./style.css" />
|
|
</head>
|
|
<body>
|
|
<button onclick="alert('Welcome to 30 days of JS!');">Click Me</button>
|
|
<script src="helloworld.js"></script>
|
|
<script src="introduction.js"></script>
|
|
<script src="day-01_exercises.js"></script>
|
|
<script src="day-01_variable.js"></script>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html>
|