Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Dawa-22 authored Jul 22, 2024
1 parent f67b562 commit cc44135
Show file tree
Hide file tree
Showing 62 changed files with 1,805 additions and 0 deletions.
167 changes: 167 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,167 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>የአረጋውያን መርጃ</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
</head>
<body>
<!-- Header & Navbar Section -->
<header>
<nav>
<div class="nav_logo">
<a href="index.html">
<h2>የአረጋውያን መርጃ</h2>
</a>
</div>

<input type="checkbox" id="click" />
<label for="click">
<i class="menu_btn bx bx-menu"></i>
<i class="close_btn bx bx-x"></i>
</label>

<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html">About</a></li>
<li><a href="service.html">Services</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<!-- Contact Section -->

<!-- <section class="contact" id="contact">
<h2 class="section_title">Contact Us</h2>
<div class="section_container">
<div class="contact_container">
<div class="contact_form">
<form action="#">
<div class="field">
<label for="Name">ሙሉ ስም</label>
<input
type="text"
id="Name"
placeholder="Your Name"
required=""
/>
</div>
<div class="field">
<label for="email">ኢሜል</label>
<input
type="text"
id="email"
placeholder="Your Email"
required=""
/>
</div>
<div class="field">
<label for="textarea">ሃሳብ አስተያየት</label>
<textarea
name="textarea"
id="textarea"
placeholder="Your Message"
></textarea>
</div>
<button class="button" id="submit">Submit</button>
</form>
</div> -->

<div class="contact_text">
<div class="contact_items">
<i class="bx bx-current-location"></i>
<div class="contact_details">
<h3>አድራሻ</h3>
<p>ቀጨኔ ደንበል ህንጻ 2ኛ ፎቅ</p>
</div>
</div>
<div class="contact_items">
<i class="bx bxs-envelope"></i>
<div class="contact_details">
<h3>ኢሜል</h3>
<p>********@gmail.com</p>
</div>
</div>
<div class="contact_items">
<i class="bx bxs-phone-call"></i>
<div class="contact_details">
<h3>ስልክ</h3>
<p>+251 9********</p>
</div>
</div>
<div class="contact_items">
<i class="bx bxs-time-five"></i>
<div class="contact_details">
<h3>የስራ ሰአት</h3>
<p>ሰኞ-እሁድ: 2:00 AM - 12 PM</p>
</div>
</div>
</div>
</div>
</div>
</section>

<!-- Footer Section -->
<footer>
<div class="section_container">
<div class="footer_section">
<div class="nav_logo">
<a href="index.html">
<h2>የአረጋውያን መርጃ</h2>
</a>
</div>

<div class="useful_links">
<h3>Useful Links</h3>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="service.html">Services</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>

<div class="contact_us">
<h3>Contact</h3>
<ul>
<li>
<i class="bx bx-current-location"></i>
<span>ቀጨኔ ደንበል ህንጻ 2ኛ ፎቅ</span>
</li>
<li>
<i class="bx bxs-phone-call"></i> <span>+251 9********</span>
</li>
<li>
<i class="bx bxs-time-five"></i>
<span>ሰኞ-እሁድ : 2:00 AM - 12፡00 PM</span>
</li>
</ul>
</div>

<div class="follow_us">
<h3>Follow</h3>
<i class="bx bxl-facebook-circle"></i>
<i class="bx bxl-youtube"></i>
<i class="bx bxl-telegram"></i>
</div>
</div>
</div>
</footer>
<!-- copyright section -->
<div class="copyright">
<p>&copy; copyright All Rights Reserved By የባለጅ ልጆች እረጋ</p>
<p>
Built and designed by <a href="">Dawit Tesfaye</a> and
<a href="">Abel Solomon</a>
</p>
</div>
</body>
</html>
Loading

0 comments on commit cc44135

Please sign in to comment.