-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (61 loc) · 2.45 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="behaylu">
<title>Behaylu - Portfolio</title>
<link rel="stylesheet" href="css/Style.css">
<script src="js/script.js"></script>
<link rel="icon" href="asset/picture.png" type="image/x-icon">
</head>
<body>
<header>
<h1>Behaylu(MD)</h1>
<p> <abbr title="Medical Doctor">MD</abbr> system enginner and web developer </p>
<button onclick="filterProjects('web')">Web Development</button>
<button onclick="filterProjects('mobile')">Mobile Apps</button>
<button onclick="filterProjects('other')">Other</button>
</header>
<section id="projects">
<!-- Modal -->
<div id="projectModal" class="modal">
<div class="modal-content">
<div class="project" data-category="web">
<h2>Web development</h2>
<p>Project Description and Details</p>
</div>
<div class="project" data-category="Mobile Apps">
<h2>Mobile Apps</h2>
<p>Project Description and Details</p>
</div>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/A_n8QDXT1iw?si=535yZzitW5zJwRVE"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</div>
</div>
<!-- More projects can be added similarly -->
</section>
<footer>
<p>Contact: [email protected]</p>
<P>Social
<a href="https://www.facebook.com/be.hayllu/">Facebook</a><img src="asset/facebook.png" height="14px">
<a href="">Telegram</a><img src="asset/telegram.png" height="14px">
<a href="">Instagram</a><img src="asset/" height="14px">
</P>
<form id="contactForm">
<table>
<tr><td><input type="text" placeholder="Name"></td> </tr>
<tr><td><input type="email" placeholder="Email"></td></tr>
<tr><td><textarea placeholder="Message"></textarea></td></tr>
<tr><td><button type="submit">Send</button></td> </tr>
</table>
</form>
<address>Dilla,Ethiopia</address>
<br>
<©behaylu> <!--my first copyright-->
</footer>
</body>
</html>