Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 21 additions & 19 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,27 @@
<html>
<title>Datacode - Hacktoberfest Indore 2022</title>
<body>
<div class="header">
<a href="https://datacode.in">
<img
height="150"
width="150"
src="https://github.com/datacode-in.png"
alt="Datacode"
/>
</a>
<h1>Hacktoberfest Indore 2022</h1>
</div>
<h2>Contributers</h2>
<div id="table"></div>
<div class="page-wrapper">
<div class="header">
<a href="https://datacode.in">
<img
height="150"
width="150"
src="https://github.com/datacode-in.png"
alt="Datacode"
/>
</a>
<h1>Hacktoberfest Indore 2022</h1>
</div>
<h2>Contributers</h2>
<div id="table"></div>

<footer>
<p>
&copy;
<a href="https://github.com/datacode-in" target="_blank">datacode</a>
</p>
</footer>
<footer>
<p>
&copy;
<a href="https://github.com/datacode-in" target="_blank">datacode</a>
</p>
</footer>
</div>
</body>
</html>
19 changes: 17 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
}
body {
font-family: "Segoe UI", sans-serif;
margin: 0;
}

.page-wrapper {
display: flex;
flex-direction: column;
align-items: center;
}

h1, h2, p {
Expand All @@ -24,7 +31,6 @@ h2 {
border-radius: 10px;
box-shadow: blueviolet 0px 1px 2px 0px, rgba(137, 43, 226, 0.409) 0px 1px 3px 1px;
padding: 10px 20px;
width: fit-content;
margin: auto;
animation: my-animation 2s infinite;
}
Expand All @@ -39,7 +45,16 @@ a {
}

#table {
margin: 50px 50px;
max-width: 1300px;
margin: 50px 0;
}

#table img {
border-radius: 50%;
}

#table a:hover {
color: blueviolet;
}

.table-body {
Expand Down