-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (102 loc) · 4.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mehdi Zakaria</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="navbar">
<div class="container">
<a href="index.html" class="logo">Mehdi<span>Zak</span></a>
<img id="mobile-cta" class="mobile-menu" src="images/menu.svg" alt="Open Navigation">
<nav>
<img id="mobile-exit" class="mobile-menu-exit" src="images/exit.svg" alt="Exit">
<ul class="primary-nav">
<li class="current"><a href="#">Home</a></li>
<li><a href="#Features">Features</a></li>
<li><a href="#Details">Details</a></li>
</ul>
<ul class="secondary-nav">
<li><a href="#Contact">Contact</a></li>
<li class="go-premium"><a href="https://github.com/mehdiz5/">Github repo</a></li>
</ul>
</nav>
</div>
</div>
<section class="hero">
<div class="container">
<div class="left-col">
<p class="subhead">It's Mehdi & Zakaria</p>
<h1>I create Web & Mobile based solutions</h1>
<div class="hero-cta">
<a href="#Contact" class="primary-cta">Contact Me Now</a>
</div>
</div>
<img src="images/illustration.svg" class="hero-image" alt="illustration">
</div>
</section>
<a id="Features"></a>
<section class="features-section">
<div class="container">
<ul class="features-list">
<li>Computer Science Student</li>
<li>UI & UX Designer</li>
<li>FullStack Web Dev</li>
<li>Mobile Dev</li>
</ul>
<img src="images/3426526.jpg" alt="man holding phone">
</div>
</section>
<a id="Details"></a>
<section class="testimonials-section">
<div class="container">
<ul>
<li>
<blockquote>Using HTLM/CSS and Js for the frontend and Django python font the backend, I create modern apps that suits your taste and follow the latest trends. starting from sctarch up to what covers your needs. so what are you waiting for? </blockquote>
<cite>Websites</cite>
</li>
<li>
<blockquote> Flutter transforms the mobile apps development process and using it i provide to you what covers your need complicated or not and as fast as you can imagine . so what are you waiting for ? conctact me</blockquote>
<cite>Mobile Apps</cite>
</li>
<li>
<blockquote>UX and UX designers can make a huge difference to the world in which we live not only through designing great user experiences, but by spreading the word about the immense value of good design. </blockquote><br>
<cite>UI & UX Design</cite>
</li>
</ul>
</div>
</section>
<a id="Contact"></a>
<section class="contact-section">
<div class="container">
<div class="contact-left">
<h2>Contact</h2>
<form action="">
<label for="name">Name</label>
<input type="text" id="name" name="name">
<label for="message">Message</label>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
<input type="submit" class="send-message-cta" name="send-message-cta" value="Send Message">
</form>
</div>
<div class="contact-right">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d51167.08743945825!2d3.078201449999988!3d36.723931!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x128fad41c48b28b5%3A0x85ce2eadf67d55fe!2sKouba!5e0!3m2!1sfr!2sdz!4v1639232023867!5m2!1sfr!2sdz" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
</section>
<script>
const mobileBtn = document.getElementById("mobile-cta");
nav = document.querySelector('nav');
mobileBtnExit = document.getElementById('mobile-exit');
mobileBtn.addEventListener('click',() => {
nav.classList.add('menu-btn')
})
mobileBtnExit.addEventListener('click',() => {
nav.classList.remove('menu-btn')
})
</script>
</body>
</html>