-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
142 lines (111 loc) · 4.76 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
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
138
139
140
141
142
<html>
<head>
<title>myweb page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class= "hero">
<h1 class="name">My <span>profile</span></h1>
<nav>
<ul type="none">
<li><a href='#'>home</a></li>
<li><a href="#contact_">contact</a></li>
<li><a href="#skils_">skils</a></li>
<li><a href="#about_">about me</a></li>
</ul>
<a href="#" class="btn">subscribe</a>
</nav>
<div class="content">
<h3> Hey my name is </h3>
<h2>Arokiya <span>kithiyon</span></h2>
<h4>I'm a software devoloper</h4>
<div class=subs>
<form>
<input type="text" name="name" placeholder="enter your name" >
<input type="submit" name="submit" value="let's start" >
</form>
</div>
</div>
</div>
<section class="about_me" id="about_">
<div class="main">
<img src="my_pic.jpeg">
<div class="about_content">
<h3>It's about me</h3>
<h5>Mechanical engineer cum designer</h5>
<ul>
<li>i'm a mechanical engineer with basic knowledge in java,SQL, html and css</li>
<li>i'm a 2020 passed out</li>
<li>i completed my bachelor of engineering in mechanical with 6.18CGPA</li>
</ul>
<a href="#" class="btn_talk">Let's talk</a>
</div>
</div>
</section>
<!--skill start-->
<div class="skill" id="skils_" >
<div class="title">
<h2>Skills</h2>
<div class="box">
<div class="card">
<i class="fa-solid fa-book-open-reader"></i>
<h4>Education</h4>
<div class="para">
<p style="text-align:center">I completed my SSLC and HSC in st.john's high sec school with 81% and 66%<br>
I did my mechanical engineering in Einstein college of engineering<br><brss>
<a class="button" href="#"> read more </a> </p>
</div>
</div>
<div class="card">
<i class="fa-solid fa-font-awesome"></i>
<h4>Project</h4>
<div class="para">
<p style="text-align:center">I devoloped my portfolio webpage by using html and css only <br><br>
<a class="button" href="#"> read more </a> </p>
</div>
</div>
<div class="card">
<i class="fa-solid fa-code"></i>
<h4>Technical Skils</h4>
<div class="para">
<p style="text-align:center">Java<br>Html<br>css<br>SQL<br><br>
<a class="button" href="#"> read more </a> </p>
</div>
</div>
<div class="card">
<i class="fa-solid fa-clapperboard"></i>
<h4>Media</h4>
<div class="para">
<p style="text-align:center">I have Youtube channel<br>Name-KITHI Talks<br>
<br>
<a class="button" href="#"> read more </a> </p>
</div>
</div>
</div>
</div>
</div>
<!--skill end-->
<!--hire start-->
<div class="hire">
<h3>Let me get you nice website<br> <br>
<a class="button" href="#"> hire me </a>
</h3>
</div>
<!--hire end-->
<!--footer start-->
<div class="footer">
<p class="author">Arokiya Kithiyon</p>
<p class="reach">Reach me at</p>
<div class="media" id="contact_">
<a href="https://instagram.com/kithi_the_king_kohli?igshid=YmMyMTA2M2Y="> <i class="fa-brands fa-instagram-square"></i> </a>
<a href="https://youtube.com/channel/UCOQkF062S0c55WhMAun-4nw"> <i class="fa-brands fa-youtube-square"></i> </a>
<a href="https://twitter.com/arokiyakithiyon?t..."> <i class="fa-brands fa-twitter"></i> </a>
<a href="https://wordpress.com/home/arokiyakithiyon.wordpress.com"><i class="fa-brands fa-wordpress"></i></a>
</div>
<p class="copy">copy right
<i class="fa-solid fa-copyright"></i></p>
</div>
<!--footer end-->
</body>
</html>