-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (84 loc) · 3.75 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
<!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://use.fontawesome.com/releases/v5.8.2/css/all.css">
<title>Personal Portfolio</title>
</head>
<body>
<nav id="navbar">
<ul class="nav-list">
<li><a href="#welcome-section" class="nav-link">About</a></li>
<li><a href="#projects" class="nav-link">Work</a></li>
<li><a href="#contact-section" class="nav-link">Contact</a></li>
</ul>
</nav>
<section id="welcome-section">
<div class="welcome-heading"><h1>Hey, I am <span>Satyam</span></h1></div>
<div class="welcome-para">a web developer</div>
</section>
<section id="projects">
<h1 class="project-header-section">These are some of my projects!</h1>
<div class="projects_grid">
<a href="https://codepen.io/kumarsatyam-100/full/JjrbQry" class="projects_link">
<img src="https://cdn.freecodecamp.org/testable-projects-fcc/images/tribute.jpg" alt="pic" >
<p class="projects_name">
Survey Form
</p>
</a>
<a href="#" class="projects_link">
<img src="https://cdn.freecodecamp.org/testable-projects-fcc/images/random-quote-machine.png" alt="pic" >
<p class="projects_name">
A Tribute page
</p>
</a>
<a href="https://random-quote-machine-nine-sable.vercel.app/" class="projects_link">
<img src="./images/random-quote-machine.png" alt="pic" >
<p class="projects_name">
Random Quote Machine
</p>
</a>
<a href="https://github.com/satyam0827/Flipkart-clone" class="projects_link">
<img src="./images/flipkart-clone.png" alt="pic" >
<p class="projects_name">
Flipkart Clone
</p>
</a>
<a href="https://github.com/satyam0827/Crud-aplication" class="projects_link">
<img src="./images/crud-application.png" alt="pic">
<p class="projects_name">
Crud Application
</p>
</a>
</div>
<button class="projects-btn"><span>Show all </span></button>
</section>
<section id="contact-section">
<div class="contact-section-header">
<h2>Let's work together</h2>
<p>How do you take your cofee</p>
</div>
<div class="contact-links">
<a href="https://github.com/satyam0827/" target="_blank" class="btn contact-details">
<i class="fab fa-github"> github</i>
</a>
<a href="https://www.linkedin.com/in/ajsatyam/" target="_blank" class="btn contact-details">
<i class="fab fa-linkedin"> linkedin</i>
</a>
<a href="https://www.instagram.com/its_satyam_.kumar" target="_blank" class="btn contact-details">
<i class="fab fa-instagram"> instagram</i>
</a>
<a href="https://www.facebook.com/satyam207" target="_blank" class="btn contact-details ">
<i class="fab fa-facebook-square" > facebook</i>
</a>
</div>
</section>
<footer id="footer-section">
<p class="footer-para">Copyright © 2020-2022 Satyam kumar Group,</p>
<p class="footer-para">All Rights Reserved.</p>
</footer>
</body>
</html>