20 lines
636 B
HTML
20 lines
636 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<script data-require="jquery@*" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
|
<link rel="stylesheet" href="style.css" />
|
|
<script src="script.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Local Google Font Generator!</h1>
|
|
<p><b>Example Input:</b> https://fonts.googleapis.com/css?family=Barrio</p>
|
|
<input id="font-input" placeholder="https://fonts.googleapis.com/css?family=Barrio" type="text">
|
|
<button id="font-btn" type="submit">
|
|
Generate CSS
|
|
</button>
|
|
<textarea id="processed-css"></textarea>
|
|
</body>
|
|
|
|
</html>
|