-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (113 loc) · 5.38 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!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">
<title>Portfolio Website - John Doe</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="wrapper">
<div class="container">
<div class="navbar">
<div class="logo-container">
<img src="./images/userAsset/NavLogo.jpg" class="logo">
<div class="logo-text">ohn Doe</div>
</div>
<div class="nav-items">
<div><a href="#projects">Projects</a></div>
<div><a href="#skills">Skills</a></div>
<div><a href="#contactme">Contact Me</a></div>
</div>
</div>
<div class="hero-section">
<div class="faded-text">John Doe</div>
<div class="hero-section-left">
<div class="hero-section-heading">Hi! John Doe</div>
<div class="hero-section-heading hero-section-sub-heading">
I am a <span class="role"></span>
</div>
<div class="hero-section-description">
I’m a software developer and here is my portfolio website. Here you’ll
learn about my journey as a software developer.
</div>
<div class="btn-pink" id="btn">Hire me</div>
</div>
<div class="hero-section-right">
<div class="absolute icons icon-dots">
<img src="./images/userAsset/dots.png" alt="" />
</div>
<div class="absolute icons icon-cube">
<img src="./images/userAsset/cube.png" alt="" />
</div>
<div class="absolute icons icon-circle">
<img src="./images/userAsset/circle.png" alt="" />
</div>
<div class="absolute icons icon-zigzag">
<img src="./images/userAsset/zigzags.png" alt="" />
</div>
<div class="absolute icons icon-plus">
<img src="./images/userAsset/plus.png" alt="" />
</div>
<div class="user-image">
<img src="./images/userAsset/UserImage.png" alt="" />
</div>
</div>
</div>
</div>
<div class="project-section">
<h2 class="page-header">Projects</h2>
<div class="project-container">
<div class="project-card" id="project1">
<div class="project-number">01</div>
<div class="project-content">
<div class="project-skills-container">
<img class="project-skill" src="./images/stack/HTML.png" alt="" />
<img class="project-skill" src="./images/stack/CSS.png" alt="" />
<img class="project-skill" src="./images/stack/Javascript.svg" alt="" />
<img class="project-skill" src="./images/stack/Express.png" alt="" />
<img class="project-skill" src="./images/stack/NextJsCircle.png" alt="" />
<img class="project-skill" src="./images/stack/Tailwind.png" alt="" />
<img class="project-skill" src="./images/stack/NodeJs.svg" alt="" />
<img class="project-skill" src="./images/stack/MongoDB.svg" alt="" />
<img class="project-skill" src="./images/stack/Redux.svg" alt="" />
<img class="project-skill" src="./images/stack/Vercel.svg" alt="" />
</div>
<h2 class="project-heading">Tint & Orange</h2>
<p class="project-subHeading">Its is a car modification copany
which provide you sheets to protect your car from scratch
</p>
<div class="btn-grp">
<button class="btn-pink btn-project">Read More</button>
<a href="">
<i title="GitHubLink" class="fa-brands fa-github icon"></i>
</a>
<a href="">
<i title="Live Link" class="fa-solid fa-link icon"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://kit.fontawesome.com/58a810656e.js" crossorigin="anonymous"></script>
<script>
var typeData = new Typed(".role", {
strings: [
"Full Stack Developer",
"Web Developer",
"UI-UX Designer",
"Backend Developer",
"Coder",
],
loop: true,
typeSpeed: 100,
backSpeed: 80,
backDelay: 1000,
});
</script>
</body>
</html>