-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.html
22 lines (22 loc) · 822 Bytes
/
build.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>webComponent demo</title>
</head>
<body>
<h1>Shadow Dom Examples</h1>
<p>The following examples demonstrate how to isolate web components and their stylings in the shadow dom</p>
<h2>Example 1: Simple Class Names</h2>
<div class="standalone-text">
<p class="standalone-text-red">
This standalone-text was rendered by the parent HTML. The color should <strong>NOT</strong> be red.
</p>
</div>
<standalone-text></standalone-text>
<script src="/dist/js/chunk-vendors.f501d102.js"></script>
<script src="/dist/js/app.2e7cdd52.js"></script>
</body>
</html>