35 lines
984 B
HTML
35 lines
984 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ASCII Art</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<h1><a href="https://en.wikipedia.org/wiki/ASCII_art">ASCII ART</a></h1>
|
|
|
|
<p>There is a bunch of randomtext here...</p>
|
|
<p>And here....</p>
|
|
<p>And here as well</p>
|
|
<h2>Types and styles</h2>
|
|
<ul>
|
|
<li>Typewriter style</li>
|
|
<li>Lite art</li>
|
|
<li>Solid art</li>
|
|
</ul>
|
|
<fieldset>
|
|
<legend>Generate your own ASCII art text!</legend>
|
|
<form action="">
|
|
<input type="text" name="" id="msg" placeholder="Enter your message">
|
|
<textarea name="" id="outdat" disabled></textarea>
|
|
<img src="./draw.png" alt="Draw" onclick="draw()">
|
|
</form>
|
|
</fieldset>
|
|
<script src="./font.js"></script>
|
|
<script src="./script.js"></script>
|
|
</body>
|
|
|
|
</html> |