Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmoy-12 committed Mar 28, 2024
1 parent ffedc87 commit 80ba1bf
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
19 changes: 10 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<body>
<div class="wrapper-main">
<div class="navbar">
<h1>E-Digital</h1>
<h1>E-Digital India</h1>
</div>
<div class="header-nav">
<div class="header-bg"></div>
Expand Down Expand Up @@ -223,6 +223,10 @@ <h1>Services We Provide</h1>
</div>
</div>
</div>

<div class="popup-link">
<a href="#" id="showPopup">Check Price of Services</a>
</div>
<div class="customer">
<div class="customer-bg"></div>
<div class="customer-card">
Expand Down Expand Up @@ -275,22 +279,19 @@ <h1>Find Us</h1>
<i class="fa-solid fa-phone"></i>
</div>
<div class="contact-text">
<p>(123) 456-7890</p>
<p>9830285060</p>
</div>
</div>
<div class="contacts">
<div class="contact-logo">
<i class="fa-solid fa-envelope"></i>
</div>
<div class="contact-text">
<p> info@website.com</p>
<p> edigitalindianaihati@gmail.com</p>
</div>
</div>
</div>
</div>
<div class="popup-link">
<a href="#" id="showPopup">Check Price of Services</a>
</div>

<div class="popup-background" id="popupBackground"></div>

Expand All @@ -308,15 +309,15 @@ <h2>Services & Prices</h2>
<tbody>
<tr>
<td>Service 1</td>
<td>$50</td>
<td>Rs 10</td>
</tr>
<tr>
<td>Service 2</td>
<td>$70</td>
<td>Rs 20</td>
</tr>
<tr>
<td>Service 3</td>
<td>$90</td>
<td>Rs 50</td>
</tr>
</tbody>
</table>
Expand Down
13 changes: 12 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -425,10 +425,11 @@ body {

.contact-text p{
margin: 0;
font-weight: 500;
}

.popup-link{
padding: 30px 0;
padding: 0 0 30px 0;
text-align: center;
}

Expand Down Expand Up @@ -492,8 +493,18 @@ table {
th, td {
padding: 10px;
border-bottom: 1px solid #ddd;
font-size: larger;
}

th {
background-color: #f2f2f2;
}

tr{

transition: all ease 1s;
}

tr:hover{
background-color: #da8702;
}

0 comments on commit 80ba1bf

Please sign in to comment.