-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (121 loc) · 4.62 KB
/
index.html
File metadata and controls
137 lines (121 loc) · 4.62 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
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
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="icon">
<div class="iconName">My Portfolio</div>
<div class="logo"><a href="developer.png" target="_blank"><img src="developer.png" alt="laptop image"></a>
</div>
</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>
<section class="firstSection">
<div class="leftSection">Hi, My name is <span class="purple">Amit</span>
<div>and i am a </div>
<!-- Element to contain animated typing -->
<span id="element"></span>
</div>
<div class="middleSection">
<a href="https://www.linkedin.com/in/amit-kumar-yadav-476a57211/" target="_blank"
alt="LinkedIn profile link">
<button class="btn">LinkedIn Profile</button>
</a>
<div class="checkout">
<h2>Check out my projects below</h2>
</div>
</div>
<div class="rightSection">
<img src="developer.png" alt="Developer image">
</div>
</section>
<section id="projects" class="projects">
<h2>My Projects</h2>
<div class="project-card">
<div id=project1>
<h2>Project 1:- Responsive Education Website using HTML5, CSS3 and JavaScript
<a href="https://github.com/amitkumar2428/LetsEducate" target="_blank"
title="https://github.com/amitkumar2428/LetsEducate" style="text-decoration: none;">
<button class="butt">GitHub Link</button>
</a>
</h2>
</div>
<div id="project2">
<h2>Project 2:- iCoder responsive website using Bootstrap
<a href="https://github.com/amitkumar2428/iCoder-Bootstrap" target="_blank"
title="https://github.com/amitkumar2428/iCoder-Bootstrap" style="text-decoration: none;">
<button class="butt">GitHub Link</button>
</a>
</h2>
</div>
</div>
</section>
<section id="contact" class="contact">
<h2>Contact me</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter Your Name">
<div id="nameError" class="error"></div>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter Your Email">
<div id="emailError" class="error"></div>
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone" placeholder="Enter Your Phone">
<div id="phoneError" class="error"></div>
<label for="message">Message:</label>
<textarea name="message" id="message" placeholder="Optional"></textarea>
<button onclick="Submit()" id="button">Submit</button>
<div id="ThankYou"></div>
</form>
</section>
<footer>
<div class="footer">
<div class="footer-first">
<h3>My Developer Fortpolio</h3>
</div>
<div class="footer-second">
<ul>
<li>Home</li>
<li>About</li>
<li>Projects</li>
</ul>
</div>
<div class="footer-third">
<ul>
<li>Home</li>
<li>About</li>
<li>Projects</li>
</ul>
</div>
<div class="footer-fourth">
<ul>
<li>Home</li>
<li>About</li>
<li>Projects</li>
</ul>
</div>
</div>
<div class="footer-rights">
Copyright © www.amitportfolio.com | All rights reserved
</div>
</footer>
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
<script src="index.js"></script>
</body>
</html>