forked from Stephanevg/PSHTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPSHTML_Example2.html
More file actions
64 lines (63 loc) · 2.04 KB
/
PSHTML_Example2.html
File metadata and controls
64 lines (63 loc) · 2.04 KB
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
<html>
<head>
<title>woop title</title>
<link href=css/normalize.css rel=stylesheet>
</head>
<Body>
<header>
<img height="100" width="400" src=https://i0.wp.com/powershelldistrict.com/wp-content/uploads/2016/01/logo_pd_quadri.png alt="logo powershell" >
<h1>
This is h1 Title in header
</h1>
<div>
<p>
This is simply a paragraph in a div.
</p>
</div>
</header>
<p>
<h2>
Example with HTML table
</h2>
<table>
<caption>
This is a table generated with PSHTML
</caption>
<thead>
<tr>
<th>number1</th>
<th>number2</th>
<th>number3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Child 1.1</td>
<td>Child 1.2</td>
<td>Child 1.3</td>
</tr>
<tr>
<td>Child 2.1</td>
<td>Child 2.2</td>
<td>Child 2.3</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Table footer</td>
</tr>
</tfoot>
</Table>
</p>
<p>
<a href="http://powershellDistrict.com" >
This links point to PowershellDistrict
</a>
</p>
<footer>
<h6>
This is h1 Title in Footer
</h6>
</footer>
</Body>
</html>