20 lines
		
	
	
		
			363 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			363 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<html>
 | 
						|
	<head></head>
 | 
						|
	<body>
 | 
						|
		<style><!-- Some stuff --></style>
 | 
						|
		<style>
 | 
						|
        .customClass {
 | 
						|
          border: 1px solid black;
 | 
						|
        }
 | 
						|
    </style>
 | 
						|
		<script>
 | 
						|
        $("div").marquee();
 | 
						|
        function test() {
 | 
						|
              window.open("https://example.com")
 | 
						|
        }
 | 
						|
    </script>
 | 
						|
		<h1>Hello</h1>
 | 
						|
                <div>World</div>
 | 
						|
	</body>
 | 
						|
</html>
 |