-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (79 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<main>
<section class="about">
<div class="about-container">
<h1>Sama Ahmed Portfolio </h1>
<img src="assets/images/samasemo.jpg" alt="personal-photo" style="width: 300px;">
</div>
<div class="info-container">
<h2>My Information</h2>
<p>My First Name is : <strong>Sama</strong></p>
<p>My Last Name is : <strong>Ahmed</strong></p>
<p>i'm a Front-End Developer</p>
<p>i'm <strong>Available</strong> For Hire</p>
<p>Vist My Website <a href="#">Portfolio</a></p>
</div>
</section>
<hr>
<section class="my-skills">
<h2>My Skills</h2>
<ul>
<li>Programming Languages
<ul>
<li>JavaScript</li>
</ul>
</li>
<li>Web Development
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Bootstrap</li>
</ul>
</li>
<li>Problem Solving
<ul>
<li>Logical thinking and troubleshooting</li>
<li>Working on coding challenges</li>
</ul>
</li>
<li>Soft Skills
<ul>
<li>Teamwork and collaboration</li>
<li>Effective communication</li>
<li>Self-learning and adaptability</li>
</ul>
</li>
</ul>
</section>
<hr>
<section class="my-client">
<h2>My Client</h2>
<img src="assets/images/client-1.jpg" alt="client-1" style="width: 300px; height: 200px;">
<img src="assets/images/client-2.jpg" alt="client-2" style="width: 300px; height: 200px;">
<img src="assets/images/client-3.jpg" alt="client-3" style="width: 300px; height: 200px;">
</section>
<section class="contact-me">
<h2>Contact Me</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" autofocus name="name" placeholder="Enter Your Name">
<label for="email">Email:</label>
<input type="email" id="email" required name="email" placeholder="Enter Your Email">
<br>
<label for="message">Message</label>
<br>
<textarea name="message" id="message" rows="7" cols="56"></textarea>
<br>
<input type="submit" value="send">
</form>
</section>
</main>
</body>
</html>