-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (93 loc) · 5.83 KB
/
index.html
File metadata and controls
95 lines (93 loc) · 5.83 KB
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
<!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="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<title>Raiqa Rasool Portfolio</title>
</head>
<body>
<header id="header">
<nav id="navbar">
<h1 class="logo">Raiqa</h1>
<div class="hamberger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="nav-menu">
<li class="nav-links"><a href="#about" class="nav-link">About Me</a></li>
<li class="nav-links"><a href="#projects" class="nav-link">Portfolio</a></li>
<li class="nav-links"><a href="#contact" class="nav-link">Contact Me</a></li>
</ul>
</nav>
</header>
<!-- Hero Section------------------- -->
<div class="hero-section" id="welcome-section">
<h1 class="hero-heading heading">I'm Raiqa Rasool</h1>
<p class="sub-heading">Frontend & WordPress Developer </p>
<a href="https://drive.google.com/file/d/1QqQfzsgDbLavlGKy2qd7QppFKxECMcIY/view?usp=sharing" target="_blank"
class="button hero-button">Download Resume</a>
</div>
<!-- Border--------------- -->
<div class="banner"></div>
<!-- About Us-------------------------- -->
<header class="about-us heading" id="about">
About Me
</header>
<p class="about-data">
I am an experienced WordPress web designer and have worked for two years as WordPress Freelancer. I have good skills in HTML, CSS and JS and also have basic level in PHP, WordPress Theme and Plugin development, UX/UI Designing using Figma and Photoshop. I am continuously practicing to reach at professional level in all of these skills and also have intention of learning backend development too once I master these. To know more about me have a look at my resume.
</p>
<div class="divider" id="about-divider"></div>
<div class="projects" id="projects">
<div class="projects-heading">Work Done by me</div>
<div class="divider" id="project-divider"></div>
<h1 class="project-sub-heading">
Frontend Projects
</h1>
<div class="projects-frontend-container">
<div class="container"><iframe class="project" src="https://codepen.io/Raiqa/full/VweKZKB" width="300" height="400"></iframe>
<a href="https://codepen.io/Raiqa/full/VweKZKB" class="project-link-box" target="_blank">Tribute Page</a></div>
<div class="container">
<iframe class="project" src="https://codepen.io/Raiqa/full/LYLRapX" width="300" height="400"></iframe>
<a href="https://codepen.io/Raiqa/full/LYLRapX" class="project-link-box" target="_blank">Survey Form</a></div>
<div class="container">
<iframe class="project project-tile" src="https://codepen.io/Raiqa/full/JjJJRoM" width="300" height="400"></iframe><a href="https://codepen.io/Raiqa/full/JjJJRoM" class="project-link-box" target="_blank">Technical Document</a></div>
</div>
<h1 class="project-sub-heading wordpress-heading">
WordPress Projects
</h1>
<div class="projects-wordpress-container">
<div class="container">
<iframe class="project" src="https://fourays-solutions.com/" width="300" height="400"></iframe>
<a href="https://fourays-solutions.com/" class="project-link-box" target="_blank">Fourays Solutions</a></div>
<div class="container">
<iframe class="project" src="https://steliodelapaz.com/fr/" width="300" height="400"></iframe>
<a href="https://steliodelapaz.com/fr/" class="project-link-box" target="_blank">Steliodepaz</a></div>
<div class="container">
<iframe class="project" src="https://blog.thebigreads.com/" width="300" height="400"></iframe>
<a href="http://www.thebigreads.com/" class="project-link-box" target="_blank">TheBigReads</a></div>
</div>
</div>
<div class="contact-us" id="contact">
<header class="contact-heading">Contact Me</header>
<form id="form" action="https://formcarry.com/s/eZuHrUaHVyC" method="POST" class="contact-form">
<input type="text" name="Name" placeholder="Name" required>
<input type="email" name="Email" placeholder="Email" required>
<textarea name="Message" cols="30" rows="5" placeholder="Message"></textarea>
<input type="submit" value="Send" id="submit-contact">
</form>
</div>
<div id="footer">
<div class="social-links">
<a href="https://codepen.io/Raiqa" class="social-icon" id="profile-link" target="_blank"><i class="fab fa-codepen actual-icon"></i></a>
<a href="https://www.linkedin.com/in/raiqa-rasool-4864881b4" target="_blank" class="social-icon"><i class="fab fa-linkedin actual-icon"></i></a>
<a href="https://chatwith.io/s/raiqa-rasool" class="social-icon" target="_blank"><i class="fab fa-whatsapp-square actual-icon"></i></a>
</div>
<p>© Copyright All Rights Reserved</p>
</div>
<script src="app.js"></script>
</body>
</html>