diff --git a/public/codes/html/introduction-html/hyperlink-pages/index.html b/public/codes/html/introduction-html/hyperlink-pages/index.html deleted file mode 100644 index 5984957..0000000 --- a/public/codes/html/introduction-html/hyperlink-pages/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Lista - - -

- Page
- Page -

- - diff --git a/public/codes/html/introduction-html/image/index.html b/public/codes/html/introduction-html/image/index.html deleted file mode 100644 index eb26c44..0000000 --- a/public/codes/html/introduction-html/image/index.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - Document - - - - Logo do IFPB - - - Logo do IFPB - - diff --git a/public/codes/html/introduction-html/basic-structure/index.html b/public/codes/html/introduction/basic-structure/index.html similarity index 100% rename from public/codes/html/introduction-html/basic-structure/index.html rename to public/codes/html/introduction/basic-structure/index.html diff --git a/public/codes/html/introduction-html/hyperlink/index.html b/public/codes/html/introduction/hyperlink-external/index.html similarity index 100% rename from public/codes/html/introduction-html/hyperlink/index.html rename to public/codes/html/introduction/hyperlink-external/index.html diff --git a/public/codes/html/introduction-html/hyperlink-internal/index.html b/public/codes/html/introduction/hyperlink-fragment/index.html similarity index 100% rename from public/codes/html/introduction-html/hyperlink-internal/index.html rename to public/codes/html/introduction/hyperlink-fragment/index.html diff --git a/public/codes/html/introduction/hyperlink-pages/index.html b/public/codes/html/introduction/hyperlink-pages/index.html new file mode 100644 index 0000000..4f2f65d --- /dev/null +++ b/public/codes/html/introduction/hyperlink-pages/index.html @@ -0,0 +1,22 @@ + + + + + + + Index + + +

Index

+

+ + Index 2 Page
+ Index 2 Page
+ + + + Index 2 Page + +

+ + diff --git a/public/codes/html/introduction-html/hyperlink-pages/pages/page.html b/public/codes/html/introduction/hyperlink-pages/pages/page.html similarity index 50% rename from public/codes/html/introduction-html/hyperlink-pages/pages/page.html rename to public/codes/html/introduction/hyperlink-pages/pages/page.html index 091f361..af28e97 100644 --- a/public/codes/html/introduction-html/hyperlink-pages/pages/page.html +++ b/public/codes/html/introduction/hyperlink-pages/pages/page.html @@ -8,5 +8,14 @@

Page

+

+ + Page 2 Index
+ + + + Page 2 Index + +

diff --git a/public/codes/html/introduction-html/hyperlink-target/index.html b/public/codes/html/introduction/hyperlink-target/index.html similarity index 100% rename from public/codes/html/introduction-html/hyperlink-target/index.html rename to public/codes/html/introduction/hyperlink-target/index.html diff --git a/public/codes/html/introduction-html/image-parent/imgs/ifpb-logo.png b/public/codes/html/introduction/image-parent/imgs/ifpb-logo.png similarity index 100% rename from public/codes/html/introduction-html/image-parent/imgs/ifpb-logo.png rename to public/codes/html/introduction/image-parent/imgs/ifpb-logo.png diff --git a/public/codes/html/introduction-html/image-parent/pages/index.html b/public/codes/html/introduction/image-parent/pages/index.html similarity index 54% rename from public/codes/html/introduction-html/image-parent/pages/index.html rename to public/codes/html/introduction/image-parent/pages/index.html index 22659e0..a231f34 100644 --- a/public/codes/html/introduction-html/image-parent/pages/index.html +++ b/public/codes/html/introduction/image-parent/pages/index.html @@ -4,9 +4,16 @@ - Document + Imagem + Logo do IFPB + + + Logo do IFPB diff --git a/public/codes/html/introduction-html/image/imgs/ifpb-logo.png b/public/codes/html/introduction/image/imgs/ifpb-logo.png similarity index 100% rename from public/codes/html/introduction-html/image/imgs/ifpb-logo.png rename to public/codes/html/introduction/image/imgs/ifpb-logo.png diff --git a/public/codes/html/introduction/image/index.html b/public/codes/html/introduction/image/index.html new file mode 100644 index 0000000..a36d75a --- /dev/null +++ b/public/codes/html/introduction/image/index.html @@ -0,0 +1,21 @@ + + + + + + + Image + + + + Logo do IFPB + Logo do IFPB + Logo do IFPB + + + Logo do IFPB + + diff --git a/public/codes/html/introduction-html/list/index.html b/public/codes/html/introduction/list/index.html similarity index 100% rename from public/codes/html/introduction-html/list/index.html rename to public/codes/html/introduction/list/index.html diff --git a/src/components/CodeHtmlPreview.astro b/src/components/CodeHtmlPreview.astro index 0bb4498..fea01b3 100644 --- a/src/components/CodeHtmlPreview.astro +++ b/src/components/CodeHtmlPreview.astro @@ -29,7 +29,7 @@ const { const htmlPath = `${src}/${htmlFile ?? 'index.html'}`; --- -
+
| greater-than | > | > | +| Caracter | Descrição | Nome | Número | +| -------- | -------------- | ---------- | ---------- | +| \" | quotation mark | &quot; | &#34; | +| \' | apostrophe | &apos; | &#39; | +| \& | ampersand | &amp; | &#38; | +| \< | less-than | &lt; | &#60; | +| \> | greater-than | &gt; | &#62; | +| © | copyright | &copy; | &#169; | Referências: @@ -246,8 +248,8 @@ Referências: ### Estrutura básica - @@ -255,52 +257,44 @@ Referências: ### Hyperlink -```plaintext title="Sintaxe" -hyperlink = content + url - -content = text, image... -``` +hyperlink = url + content (text, image...): ```html title="Sintaxe Básica" content ``` -Exemplo Básico: +Link externo: - Atributo `target`: - -Link interno (#): +Link interno: - - - +```plaintext title="Estrutura da URL" + query + schema domain port path string fragment +┌───┴──┐┌──────┴─────┐┌┴┐┌─────────┴──────────┐┌───┴────┐┌───┴────┐ +https://ifpb.github.io:80/dw/html/introduction/?name=ifpb#hyperlink +``` - + Link entre páginas: - + + + + + ### Imagem @@ -308,25 +302,16 @@ Link entre páginas: text alternative ``` -Exemplo (Abrir no Liver Server e localmente): - -```plaintext showLineNumbers title="Arquivos" -/ -└── var - └── www - └── site - └── pages - ├── index.html - └── img - └── image.png -``` + - + -Diretório (..): +Parent directory: - + + + + +### Tabela + +```plaintext title="Conteúdo Tabular" +Linguagem Utilização +Python 14.51% +C 14.41% +Java 13.23% +C++ 12.96% +C# 8.21 +``` + +