This commit removes all the docregion tags in examples that are not being referenced in any doc. PR Close #40479
22 lines
501 B
HTML
22 lines
501 B
HTML
<!DOCTYPE html>
|
|
<!-- #docregion -->
|
|
<html lang="en">
|
|
<head>
|
|
<title>Hero Form</title>
|
|
<base href="/">
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet"
|
|
href="https://unpkg.com/bootstrap@3.3.7/dist/css/bootstrap.min.css">
|
|
<!-- #docregion styles -->
|
|
<link rel="stylesheet" href="assets/forms.css">
|
|
<!-- #enddocregion styles -->
|
|
</head>
|
|
|
|
<body>
|
|
<app-root></app-root>
|
|
</body>
|
|
|
|
</html>
|