html-playground

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 7fc7b942358ba83244b73d62973121bd4a0cdbf0
parent 765d0bb7630116b7c664c1e151716542971bd3a9
Author: Minerva_juppiter <94231606+minerva-jupiter@users.noreply.github.com>
Date:   Tue,  8 Apr 2025 22:04:13 +0900

add art drow & style (#1)


Diffstat:
Aart.html | 12++++++++++++
Aarticle/drow.html | 2++
Mindex.html | 24++++++++++++++++++++++--
Astyle/style.css | 6++++++
4 files changed, 42 insertions(+), 2 deletions(-)

diff --git a/art.html b/art.html @@ -0,0 +1,11 @@ +<h1>ART</h1> + +<pre> + some + some + some + some + some + some + some +</pre>+ \ No newline at end of file diff --git a/article/drow.html b/article/drow.html @@ -0,0 +1 @@ +<h2>draw</h2>+ \ No newline at end of file diff --git a/index.html b/index.html @@ -3,9 +3,29 @@ <head> <meta charset="UTF-8"> <title>html playground</title> - + <link rel="stylesheet" href="style/style.css"> </head> <body> - + <header> + <h1>HTML playground</h1> + <p>HTMLの練習をするためのページです。</p> + <nav> + <menu> + <ul> + <li><a href="index.html">Home</a></li> + <li><a href="https://home.minervajuppiter.net">Profile</a></li> + <li><a href="art.html">art</a></li> + <li><a href="article/drow.html">drow</a></li> + </ul> + </menu> + </nav> + </header> + <main> + <article> + <h2>HTML最高</h2> + <p>HTMLってこんなに素晴らしい言語だったんだ。</p> + <p>ブログをSvelteからこっちに移行したい気分がするくらいには、素晴らしい気分。</p> + </article> + </main> </body> </html> \ No newline at end of file diff --git a/style/style.css b/style/style.css @@ -0,0 +1,5 @@ +body { + background-color: black; + color: whitesmoke; + padding-inline: 5rem; +}+ \ No newline at end of file