15 lines
		
	
	
		
			325 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			325 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <title>Simple Static Example</title>
 | 
						|
    <link rel="stylesheet" href="style.css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
    <h1>Hello from Static!</h1>
 | 
						|
    <button id="clickMeBtn">Click Me</button>
 | 
						|
    <p id="message"></p>
 | 
						|
    <script src="script.js"></script>
 | 
						|
</body>
 | 
						|
</html>
 |