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.
43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
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>
|
|
|
|
<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>
|
|
|
|
<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>
|
|
|
|
<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(380);
|
|
new CircleType(document.getElementById("down")).dir(-1).radius(380);
|
|
</script>
|
|
</html> |