20 lines
488 B
HTML
20 lines
488 B
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@500&display=swap" rel="stylesheet">
|
||
<style>
|
||
.heading {
|
||
font-family: 'DM Sans', sans-serif;
|
||
font-weight: 500;
|
||
font-size: 58px;
|
||
line-height: 1.1;
|
||
letter-spacing: -0.03em;
|
||
max-width: 610px;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="heading">Tinker with a Neural Network right here in your browser. Don’t worry, you can’t break it. We Promise.</div>
|
||
</body>
|
||
</html>
|