-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (83 loc) · 3.1 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
<!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" />
<link rel="stylesheet" href="css/style.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=Merriweather&family=Montserrat&family=Sacramento&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="images/favicon (1).ico" />
<title>My Portfolio Website</title>
</head>
<body>
<div class="top-container">
<h1>I am Ayesha</h1>
<h2 class="first-head">a web programmer</h2>
<img src="images/cloud.png" class="top-cloud" alt="cloud-img" />
<img src="images/cloud.png" class="bot-cloud" alt="cloud-img" />
<img src="images/mountain.png " alt="mountain-img" />
</div>
<div class="middle-container">
<div class="profile">
<img src="images/avatar.png" alt="my-profile" width="20%" />
<h2>Hello</h2>
<p class="intro">
Hi, I am a Programming Student. I am graduated last year. I've
specilization in Mathematics and Physics. I also teach Mathematics to
students.
</p>
</div>
<hr class="first-hr" />
<div class="skills">
<h2>My Skills.</h2>
<div class="skill-row" id="row-1">
<img
class="math"
src="images/calculating.png"
alt="math-img"
width="25%"
/>
<h3>Mathematics</h3>
<p>
Mathematics is my passion. I dont know it kinda feels like I am in
the universe where things are just need to be discovered.
</p>
</div>
<div class="skill-row" id="row-2">
<img
class="program"
src="images/chillies.png"
alt="program-img"
width="25%"
/>
<h3>Programming</h3>
<p>
I started learning programming in 2021 though its too late but I
just expose myself too late for this. First, it was tricky to get to
know about the things. I found that I've always been a freak about
science and technology. I want to pave my way to machine learning.
</p>
</div>
</div>
<hr class="second-hr" />
<div class="contact-me">
<h2>Get In Touch</h2>
<p>Wanna know more about the programming or python in particular,</p>
<p>Contact me anytime. Social links are given below</p>
<button>
<a href="mailto:[email protected]">CONTACT ME</a>
</button>
</div>
</div>
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/">LinkedIn</a>
<a class="footer-link" href="https://www.github.com/">Github</a>
</div>
<script src="./script/index.js"></script>
</body>
</html>