-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (105 loc) · 4.51 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>housni Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script defer src="index.js"></script>
</head>
<body>
<nav>
<h5>tech rise</h5>
<ul class="nav_menu">
<li class="active"><a href="body">Home</a></li>
<li><a href="#about_me">About</a></li>
<li><a href="#Skills">Skills</a></li>
<li><a href="#Project">Project</a></li>
<li><a href="#Contact">Contact</a></li>
</ul>
</nav>
<main>
<section id="landing_page">
<h3>Hi, I'm <span>Housni mohammed said</span></h3>
<h4>Full stack developer</h4>
<button class="Contect_me_button">Contect Me</button>
</section>
<section id="about_me">
<div class="about_me_text_container">
<h3>About me</h3>
<hr>
<p>I'm Housni Mohammed Said, a dedicated full-stack developer </p>
<p>I have a passion for crafting exceptional web applications</p>
<p>I'm in the final stages of completing my master's degree, all the while honing my skills</p>
<button id="Resume"><a href="image/CV.pdf" download > Resume</a></button>
<button class="Contect_me_button">Contact Me</button>
</div>
<div class="about_me_image_conatainer">
<img class="about_me_image" src="image/undraw_futuristic_interface_re_0cm6.svg" >
</div>
</section>
<section id="Skills">
<h3>My <span>Skills</span></h3>
<hr>
<div class="Skills_container">
<div class="image_container">
<img src="image/html.jpg" alt="">
</div>
<div class="image_container">
<img src="image/css.webp" alt="">
</div>
<div class="image_container">
<img src="image/js.jpeg" alt="">
</div>
<div class="image_container">
<img src="image/PHP.png" alt="">
</div>
<div class="image_container">
<img src="image/mysql.png" alt="">
</div>
<div class="image_container">
<img src="image/git.png" alt="">
</div>
</div>
</section>
<section id="Project">
<h3>My <span>Project</span></h3>
<hr>
<div class="Projects_container">
<div class="Project_container">
<img src="image/Info_Academy.png" alt="">
<h4>INFO ACADEMY</h4>
<p>an engaging educational experience</p>
<button><a href="https://github.com/hsnsaid/BD-Projet" target="_blank">Code</a></button>
</div>
<div class="Project_container">
<img src="image/linkedin.png" alt="">
<h4>linkclone</h4>
<p>represents a full clone of LinkedIn,</p>
<button><a href="https://github.com/hsnsaid/linkedin-clone" target="_blank">Code</a></button>
</div>
<div class="Project_container">
<img src="image/todo.png" alt="">
<h4>todo</h4>
<p> todo list with additional features</p>
<button><a href="https://github.com/hsnsaid/todo-list-" target="_blank">Code</a></button>
</div>
</div>
</section>
<section id="Contact">
<h3><span>Contact Me</span></h3>
<hr>
<form id="my-form" action="https://formspree.io/f/mvojaovk" method="post">
<input type="text" placeholder="Enter your Name">
<input type="email"placeholder="Enter your Email" name="email">
<textarea name="message" id="" cols="30" rows="3" placeholder="Your Message Here"></textarea>
<button id="my-form-button">Send Message</button>
<p id="my-form-status"></p>
</form>
</section>
</main>
</body>
</html>