-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (74 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css" />
<title>Ghouse Portfolio</title>
</head>
<body>
<nav>
<div class="nav__content">
<div class="logo"><a href="#">Ghouse</a></div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Resume</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</nav>
<section class="section">
<div class="section__container">
<div class="content">
<p class="subtitle">HELLO</p>
<h1 class="title">
I'm <span>Mitchell<br />a</span> Web Developer
</h1>
<p class="description">
Welcome to my web developer portfolio! I'm Ghouse, a talented and imaginative web developer
dedicated to crafting visually appealing, responsive, and user-friendly websites. I've contributed
to numerous web projects, from personal blogs to e-commerce platforms.
</p>
<div class="action__btns">
<button class="hire__me">Hire Me</button>
</div>
</div>
<div class="image">
<img src="https://images.pexels.com/photos/2599244/pexels-photo-2599244.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt="profile" />
</div>
</div>
</section>
<section class="skills">
<div class="skills__container">
<h1 class="skills__header">Skills</h1>
<ul class="skills__list">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>React</li>
<li>Node.js</li>
<li>Python</li>
</ul>
</div>
</section>
<section class="projects">
<div>
<h2 class="projects_header">Projects</h2>
<div class="projects__list">
<div class="project">
<img src="https://images.pexels.com/photos/20632751/pexels-photo-20632751/free-photo-of-a-cup-of-tea-and-dates-on-a-white-cloth.jpeg"
alt="project image">
<h3 class="project__title">Project One</h3>
<p class="project__description">A brief description of the first project goes here. This project
involved using HTML, CSS, and JavaScript </p>
<button class="project__btn"><a href="#">Check here</a></button>
</div>
</div>
</div>
</section>
<footer>
©
2024 | Made with ❤️ GDSC MJCET
</footer>
</body>
</html>