startit/MVC/farger.html

39 lines
736 B
HTML
Raw Normal View History

2024-09-10 14:18:18 +02:00
<!DOCTYPE html>
<html lang="en">
2024-09-10 14:18:18 +02:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CRUD MVC</title>
<style>
.box {
height: 3cqh;
}
.color{
border: 1px solid grey;
border-radius: 15px;
margin: 10px;
width: 200px;
overflow: hidden;
}
.topBox {
padding: 4px 20px;
display: flex;
justify-content: space-between;
background-color: #484848;
color: white;
}
</style>
2024-09-10 14:18:18 +02:00
</head>
2024-09-10 14:18:18 +02:00
<body>
<div id="app">
</div>
2024-09-10 14:18:18 +02:00
<script src="farger.js">
2024-09-10 14:18:18 +02:00
</script>
</body>
2024-09-10 14:18:18 +02:00
</html>