webcm
Version:
Demonstrative implementation of a web-based manager for utilising Managed Components
27 lines (24 loc) • 717 B
HTML
<html>
<head>
<meta charset="utf-8" />
<title>test assets</title>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap"
rel="stylesheet"
/>
</head>
<body>
<h1>Test Assets</h1>
<a href="/somewhere-else.html">Go to another page</a>
<br />
<img src="/webcm/demo/cheese" alt="camembert is delish" width="200px" />
<img
width="200px"
src="https://images.unsplash.com/photo-1458682760028-07c9d41d0cd1?ixid=MnwxMTI1OHwwfDF8cmFuZG9tfHx8fHx8fHx8MTY1MDQ1NDY4NA&ixlib=rb-1.2.1&q=85&w=2880"
alt="palm trees"
/>
<script>
webcm.track('event', { name: 'cheese', something: 'brie' })
</script>
</body>
</html>