This commit is contained in:
Lucas Kent 2022-11-16 13:59:43 -05:00 committed by GitHub
parent 14043eef1c
commit 37103a42f3

View File

@ -17,8 +17,25 @@
<h2>Home</h2>
<img src="imgs/zuck.jpg" alt="Mark Zuckerberg Chilling" style="width:300px;height:300px;" srcset="" class="broider">
<p class="double">Welcome to my Website.</p>
<a href='https://www.geometrytools.ga'><button class="button2">Home</button></a>
<a href='https://www.geometrytools.ga'><button class="button">Home</button></a>
<a href='sitemap.html'><button class="button">Sitemap</button></a>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li>
<a href="test1.html">Test1 <span class="carrot"></span></a>
<div>
<ul>
<li><a href="test#testA">TestA</a></li>
<li><a href="test.html#B">TestB</a></li>
<li><a href="teset.C">TestC</a></li>
</ul>
</div>
</li>
<li><a href="test2.html">Test2</a></li>
<li><a href="test3.html">Test3</a></li>
</ul>
</nav>
</body>
<style>
html, body {
@ -44,4 +61,19 @@
}
}
</style>
<style>
nav {
background-color: #fff;
border: 1px solid #dedede;
border-radius: 4px;
box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
color: #888;
display: block;
margin: 8px 22px 8px 22px;
overflow: hidden;
width: 100%;
margin: 0;
padding: 0;
}
</style>
</html>