Sascha Schulz
2024-02-19 ae66b713f087d2298fe4db7ae67e68453a30dfc0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Card Component</title>
        <script defer src="exercise-card-component.js"></script>
    </head>
    <body>
        <card-component>
            <span slot="title">Card Title</span>
            <span slot="content">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat...</span>
        </card-component>
    </body>
</html>