-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
115 lines (103 loc) · 3.65 KB
/
index2.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
<!DOCTYPE html>
<html>
<head>
<title>Simple-site</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="top-container">
<div>
<h1>Hey, I'm Ebuka.</h1>
<p>a programmer wanna be.</p>
</div>
<div class="about-section">
<img src="https://cdn-icons-png.flaticon.com/128/163/163824.png" alt="" />
<div>
<h2 class="aboutme">About Me.</h2>
<p>
Lorem ipsum dolor sit amet, vitae volutpat, dui conubia, dolor urna. Non
auctor, montes nulla distinctio.
</p>
<p>
Lorem ipsum dolor sit amet, vitae volutpat, dui conubia, dolor urna. Non
auctor, montes nulla distinctio.
</p>
</div>
</div>
</div>
<hr />
<div class="middle-container">
<h2>My Skills.</h2>
<div class="programmng-skill">
<img
src="https://t3.ftcdn.net/jpg/01/26/54/02/240_F_126540270_0WEQ6I4iO25ILJnF66t7M1vnAVsNAZO0.jpg"
alt=""
/>
<h3>Programming</h3>
<p>
Lorem ipsum dolor sit amet, quis in duis, iaculis id felis.
Consectetuer vestibulum, nunc urna lectus, erat ligula. Hendrerit nam,
lectus ante, ut lorem eros.
</p>
</div>
<div>
<img
src="https://cdn-icons-png.flaticon.com/128/1753/1753751.png"
alt=""
/>
<h3>Front-end Development</h3>
<p>
Lorem ipsum dolor sit amet, mauris sed consectetuer. Etiam et eu,
bibendum interdum, lacus quis mauris. Curabitur wisi, quisque vel eu,
rutrum nam.
</p>
</div>
</div>
<hr />
<div class="services-container">
<h2>Services</h2>
<p>Here is a list of what services i can offer you</p>
<ul>
<li>Web Development</li>
<li>Programming</li>
<li>Product design</li>
</ul>
</div>
<hr />
<div id="contact-container" >
<h2>Would you love to do business with me?</h2>
<h3>Get in touch.</h3>
<form id="form-section">
<label>Enter your full name</label><br>
<input type="text" name="name"><br>
<label>Enter your email</label><br>
<input type="email" name="email"><br>
<div class="gender-hobbies">
<div>
<br><label>Enter your gender</label><br>
<input type="radio" id="gender" name="gender" value="male"/>Male <br>
<input type="radio" id="gender" name="gender" value="female"/>Female <br/>
<input type="radio" id="gender" name="gender" value="others"/>others <br/>
</div>
<div>
Hobbies:<br>
<input type="checkbox" id="cricket" name="cricket" value="cricket"/>
<label for="cricket">Cricket</label> <br>
<input type="checkbox" id="football" name="football" value="football"/>
<label for="football">Football</label> <br>
<input type="checkbox" id="hockey" name="hockey" value="hockey"/>
<label for="hockey">Hockey</label>
</div>
</div>
<br>Type your comment:<br>
<textarea></textarea><br>
<input class="button" type="submit" value="Submit">
</form>
</div>
<div id="footer-section">
<a href="https://www.wikipedia.org/">LinkedIn</a>
<a href="https://www.youtube.com/">Twitter</a>
<p>© 2018 Name Surname.</p>
</div>
</body>
</html>