24 lines
		
	
	
		
			762 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			762 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <title>YT-Downloader</title>
 | 
						|
    <link rel="stylesheet" href="css/index.css"
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
    <!--
 | 
						|
    <script type="application/dart" src="index.dart"></script>
 | 
						|
    <script src="packages/browser/dart.js"></script>
 | 
						|
    -->
 | 
						|
    <script src="index.js"></script>
 | 
						|
    <h1>Video Downloader</h1>
 | 
						|
    <center>
 | 
						|
        <form id="DownloadForm">
 | 
						|
            <input type="text" name="url" id="url" placeholder="Enter your url here">
 | 
						|
            <button type="submit" id="downloadbutton" onclick="ytdl()">Download</button>
 | 
						|
        </form>
 | 
						|
    </center>
 | 
						|
</body>
 | 
						|
</html> |