22 lines
535 B
HTML
22 lines
535 B
HTML
<!doctype html>
|
|
<html lang="en-us">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="css/main.css">
|
|
</head>
|
|
|
|
<body>
|
|
<form id="profile-form">
|
|
<button type="button" onclick="generateProfile()">Generate</button>
|
|
<p>
|
|
<label for="profile">Generated profile</label>
|
|
<textarea name="profile" id="profile" cols="80" rows="15"></textarea>
|
|
</p>
|
|
</form>
|
|
<script src="js/main.js"></script>
|
|
</body>
|
|
|
|
</html>
|