-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (104 loc) · 5 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
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<title>Portfolio Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="hero">
<nav>
<h1 class="logo">Portfo<span>lio</span></h1>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About us</a></li>
<li><a href="#services">Services</a></li>
<!-- <li><a href="#skills">Skills</a></li> -->
<li><a href="#contact">Contact Us</a></li>
</ul>
<a href="" class="btn">Follow me</a>
</nav>
<div class="content">
<h4>Hey, My name is</h4>
<h1>Omar<span> Aftab</span></h1>
<h3>I am a <span>Data Scientist</span></h3>
<div class="newslatter">
<form>
<input type="email" name="email" placeholder="Enter Your email">
<input type="submit" name="submit" value="Let's Start">
</form>
</div>
</div>
</div>
<!-- About Section -->
<section id="about" class="About">
<div class="Main">
<img src="mypic.JPG">
<div class="About-text">
<h1>About Me</h1>
<h5>Data<span>Scientist</span></h5>
<p>I am a dedicated and results-driven Data Scientist with a passion for leveraging data to extract meaningful insights. With a strong background in mathematics, statistics, and programming, I excel in handling complex data sets, implementing machine learning models, and conducting in-depth data analysis. My expertise extends to data visualization and the communication of findings to drive informed decisions. I am committed to contributing my skills and knowledge to solve real-world problems and to furthering the field of data science through innovative solutions.</p>
<button type="button">Let's Talk</button>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="Services">
<div class="Title">
<h2>Our Services</h2>
</div>
<div class="box">
<div class="card">
<i class="fas fa-cogs"></i> <!-- Icon for Machine Learning Model -->
<div class="pra">
<p>ML Model:<br>Make smart computer programs that use data to solve tricky problems and help us decide what to do.</p>
<p style="text-align: center;"><a class="button" href="#">Read More</a></p>
</div>
</div>
<div class="box">
<div class="card">
<i class="fas fa-desktop"></i> <!-- Icon for Website Development -->
<div class="pra">
<p>Web Development:<br>Create and construct websites that look good on all devices and are easy for people to use.</p>
<p style="text-align: center;"><a class="button" href="#">Read More</a></p>
</div>
</div>
<div class="box">
<div class="card">
<i class="fas fa-paint-brush"></i> <!-- Icon for Creative Illustrations -->
<div class="pra">
<p>Creative Illustrations:<br>Design engaging images and graphics that make marketing materials more appealing and grab people's attention.</p>
<p style="text-align: center;"><a class="button" href="#">Read More</a></p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="Contact-me">
<div class="Title">
<p>Let me create an amazing Website for you</p>
<a class="button-two" href="#">Hire Me</a>
</div>
</section>
<footer class="footer">
<div class="footer-content">
<div class="footer-details">
<h4>Contact Details</h4>
<p>Email: <a href="[email protected]">[email protected]</a></p>
<p>Phone: 03460680077</p>
</div>
<div class="footer-social">
<h4>Follow Me</h4>
<ul class="social-icons">
<li><a href=""><i class="fab fa-github"></i></a></li>
<li><a href=""><i class="fab fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>