Skip to content
Open
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
125 changes: 125 additions & 0 deletions Contact_Yuktashettigar16
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
<!--Contact us with footer html file-->
<section class="contact" id="Contact">
<div class="max-width">
<h2 class="title">Contact Me</h2>
<div class="contact-content">
<div class="column left">
<div class="text">Contact Details</div>
<p>Contact me to know more details</p>
<div class="icons">
<div class="row">
<i class="fas fa-map-marker-alt"></i>
<div class="info">
<div class="head">Address</div>
<div class="sub-title">Bengaluru, Karnataka , India</div>
</div>
</div>
<div class="row">
<i class="fas fa-envelope"></i>
<div class="info">
<div class="head">Email</div>
<div class="sub-title">xyz342.abc.edu.in</div>
</div>
</div>
<div class="row">
<i class="fas fa-phone-alt"></i>
<div class="info">
<div class="head">Phone</div>
<div class="sub-title">(91) 90909 09090 or (91) 12345 67890</div>
</div>
</div>
</div>
</div>
<div class="column right">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3888.977563573153!2d77.5643664138822!3d12.909163519740353!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bae156310100001%3A0x71be53da4480fbbe!2sDayananda%20Sagar%20College%20of%20Engineering!5e0!3m2!1sen!2sin!4v1625143947075!5m2!1sen!2sin"
width="450" height="350" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
</div>
</section>

<!-- footer section start -->
<footer>
<span>Created with ❤️ by Me. </a> | <span class="far fa-copyright"></span> 2021 All Rights Reserved.</span>
</footer>

</body>

</html>



CSS styles (optional):


/* contact section styling */

.contact .contact-content .column {
width: calc(50% - 30px);
}

.contact .contact-content .text {
font-size: 20px;
font-weight: 600;
margin-bottom: 10px;
}

.contact .contact-content .left p {
text-align: justify;
}

.contact .contact-content .left .icons {
margin: 10px 0;
}

.contact .contact-content .row {
display: flex;
height: 65px;
align-items: center;
}

.contact .contact-content .row .info {
margin-left: 30px;
}

.contact .contact-content .row i {
font-size: 25px;
color: #f47932;
}

.contact .contact-content .info .head {
font-weight: 500;
}

.contact .contact-content .info .sub-title {
color: #333;
}

.contact .right {
display: flex;
}

.contact .contact-content .column.right {
text-align: center;
align-items: center;
justify-content: center;
}


/* footer section styling */

footer {
background: #111;
padding: 40px 23px;
color: #fff;
text-align: center;
}

footer span a {
color: #f47932;
text-decoration: none;
}

footer span a:hover {
text-decoration: underline;
}