forked from lewislwood/vsCode-Intro-Screen-Reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnippets.html
97 lines (84 loc) · 2.43 KB
/
snippets.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!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>Snippets Example</title>
</head>
<body>
<style>
.myContainer {
width: 100%;
display: flex;
flex-direction: row;
justify-items: start;
}
.lwBrown {
background: brown;
}
.lwBlue {
background: #000080;
}
.lwRed {
background: red;
}
.b1 {
border-style: groove;
}
.b2 {
border-radius: 25%;
border-style: double;;
}
.box {
border-width: 3px;
width: 31%;
padding: 8px;
margin: 0px;
}
body {
background: black;
color: white;
font-size: 2em;
font-weight: 750;
}
</style>
<br><br>
<h1>Snippets Trial and demo</h1>
<br><br><br>
<div class="lwDivClass">
<label for="myInput1" class="lblClass">Enter myInput1</label> <input type="text" id="myInput1">
</div>
<br><br><br>
<div id=""myContainer" class="myContainer">
<div class='lwBrown box b2'>
<label for='FirstId' class='lblClass'>Enter First: </label> <input type='text' id='FirstId'><br>
<label for='MiddleId' class='lblClass'>Enter Middle: </label> <input type='text' id='MiddleId'><br>
<label for='LastId' class='lblClass'>Enter Last: </label> <input type='text' id='LastId'>
</div>
<div class='lwRed b2 box'>
<label for='dogId' class='lblClass'>Enter dog: </label> <input type='text' id='dogId'><br>
<label for='catId' class='lblClass'>Enter cat: </label> <input type='text' id='catId'><br>
<label for='birdId' class='lblClass'>Enter bird: </label> <input type='text' id='birdId'>
</div>
</div>
<!--
File Name: snippets.html
Version: 1.0
Created: October 2022
Author: Lewis L. Wood
eMail: [email protected]
website: http: blindheroes.org
Description: This is test file to demo snippets and such.
-->
<!--
File Name: snippets.html
Version: 1.0
Created: October 2022
Author: Lewis L. Wood
eMail: [email protected]
website: http: blindheroes.org
Description: This is my snippet file for testing and creating.
-->
</body>
</html>