This commit is contained in:
HodiamontHods
2025-09-30 09:49:14 +02:00
parent c479cc7986
commit 2a4188a3e6
2 changed files with 22 additions and 13 deletions

View File

@@ -8,11 +8,11 @@
</head> </head>
<body> <body>
<header> <header>
<li> <ul>
<a href=""><button>hallo</button></a> <li><a href=""><button>hallo</button></a></li>
<a href=""><button>alvin</button></a> <li><a href=""><button>alvin</button></a></li>
<a href=""></a><button>kkk</button> <li><a href=""></a><button>Senna</button></li>
</li> </ul>
</header> </header>

View File

@@ -1,15 +1,24 @@
body{ body{
background-color: blueviolet; background-color: greenyellow;
} }
header{
color: black; ul {
outline: red solid 10px; list-style-type: none;
width: auto; margin: 0;
height: 100px; padding: 0;
background-color: #333333;
display: flex;
justify-content: center;
border-radius: 15px;
} }
button{ button{
width: auto; font-size: large;
align-items: center; font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif ;
background-color: chocolate;
height: 100px;
width: 150px;
margin: 1rem;
border-radius: 5px;
} }