Examples/Example10/Example10.ps1


import-module C:\Users\taavast3\OneDrive\Scripting\Repository\Projects\OpenSource\PSHTML\pshtml.psd1 -force
html {

    head {

        title "Example 2"
    }

    body {
        h1 {"Example adding loops an other operators"}

        $Languages = @("PowerShell","Python","CSharp","Bash")

        Foreach()

    }
    Footer {
        h6 "This is h1 Title in Footer"
    }

}


$Document > .\PSHTML_Basic_Example.html