forked from hari7261/First-OpenSource-Contribution
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
70 lines (63 loc) · 2.3 KB
/
index1.html
File metadata and controls
70 lines (63 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Portfolio</title>
</head>
<body>
<header>
<nav>
<h2 class="name">Hello World</h2>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#skill">Skill</a></li>
<li><a href="#project">Project</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<article>
<h1 class="intro">Hello I'am jenilson</h1>
<p>Welcome to my portfolio ! I'm a passionate web developer with a strong enthusiam for creating innovative and intractive web apps </p>
<button>Download CV</button>
<div class="social-container">
<img src="" alt="">
<img src="" alt="">
<img src="" alt="">
<img src="" alt="">
<img src="" alt="">
</div>
</article>
<div class="img-container">
<figure>
<img src="./images.jpg" alt="user_img" name="User Image">
</figure>
</div>
</section>
<section id="skill">
</section>
<section id="Project">
</section>
<section id="about">
</section>
<section id="contact">
<h3>Get in touch with me for any question , feedback or any other collaboration</h3>
<div >
<form action="" method="post" class="contactform">
<h3>Contact Form</h3>
<input type="text" name="name" id="name" placeholder="Enter Your Name">
<input type="email" name="email" id="email" placeholder="Enter Your Email">
<textarea name="message" id="message" cols="20" rows="5" placeholder="Enter Your Message"></textarea>
<input type="submit" value="Send">
</form>
</div>
</section>
</main>
</body>
<script src="index.js"></script>
</html>