You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
605 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>flex card</title>
<link href="stylesheet.css" rel="stylesheet">
<script src="circletype.min.js"></script>
</head>
<body>
<section>
<div class="card">
<p id="up" class="up">'o ccafè</p>
<p id="down" class="down">the coffee</p>
<img src='./images/coffee.PNG'>
</div>
</section>
</body>
<script>
new CircleType(document.getElementById("#up")).radius(320);
new CircleType(document.getElementById("#down")).dir(-1).radius(320);
</script>
</html>