-
Notifications
You must be signed in to change notification settings - Fork 0
/
Task 02.html
41 lines (37 loc) · 1.42 KB
/
Task 02.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style2.css">
<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=Poppins:wght@100;300;400&display=swap" rel="stylesheet">
<title>Task-02</title>
</head>
<body>
<header class="header">
<a href="#" class="NameLogo">Ali</a>
<nav class="navbar">
<a href="#" class="activeTab">Home</a>
<a href="#">About</a>
<a href="#">Projects</a>
<a href="#">Contact</a>
</nav>
</header>
<section class="home">
<div class="home-content">
<h1>Hello, This is Muhammad Ali</h1>
<h3>Software Engineer</h3>
<p>An ambitious, highly motivated, and energetic Software Engineer with problem solving skills.
Eager to prove the ability of doing valuable and worth bearing work. A result-oriented person
with a proven ability to get outcomes, improve services as well as quality work.
</p>
<a href="#" class="btn">Let's Connect</a>
</div>
<div class="home-image">
<img src="Profile.jpg" alt="My Pic">
</div>
</section>
</body>
</html>