-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (77 loc) · 3.08 KB
/
index.html
File metadata and controls
84 lines (77 loc) · 3.08 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
<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" type="text/css" href="static/css/style.css">
<title>Portfolio</title>
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About Me</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#works">Works</a></li>
<li><a href="#contact_me">Contact Me</a></li>
</ul>
</nav>
<section id='home'>
<div class='container-1'>
<h1>Heyy I'm Akash</h1>
<h3>Student at college of engineering Chengannur</h3>
</div>
</section>
<section id="about">
<div class='container-2'>
<h1>ABOUT ME</h1>
<p>I'm currently a first year btech student at <a href='https://ceconline.edu/'>CeC</a>(College Of Engineering Chengannur).</p><br>
<p>I completed my Higher Secondary at MGM Model School.</p><br>
<p>I love connecting with people .So connect with <a href="#contact_me">me</a> if u like:)</p>
</div>
</section>
<section id="skills">
<div class='container-3'>
<h1>SKILLS</h1>
<ul>
<li>Python </li>
<li>Django </li>
<li>Flask </li>
<li>C++</li>
<li>C</li>
<li>HTML5</li>
<li>CSS</li>
<li>JS</li>
</ul>
</div>
<a href="https://www.github.com/akkupy"><img class="github_image" src="static/photos/github.png" ></a>
<h4 class='github_text'>Take a look at my github.</h4>
</section>
<section id="works">
<div class='container-4'>
<h1>MY WORKS</h1>
<div class='imgs'>
<a href ="https://github.com/akkupy/Sara-Bot"><img src="static/photos/portfolio-01.jpg" width="300" height="300"></a>
<a href ="https://github.com/akkupy/Space-Invader"><img src="static/photos/portfolio-02.jpg" width="300" height="300"></a>
<a href = "https://github.com/akkupy/School-Management-System"><img src="static/photos/portfolio-03.jpg" width="300" height="300"></a>
</div>
</div>
</section>
<section id = "contact_me">
<div class = "container-5">
<h1>CONTACT ME</h1>
<div class="contact">
<form action="#contact_me">
<br>
<input type="text" class="un" placeholder="Your Name?">
<input type="email" class="un" placeholder="Your Mail ID please?">
<input type="text" class="un" placeholder="Subject">
<textarea class="un" rows="3" placeholder="Tell me About You :)"></textarea>
<input type="submit" class="submit" value="Submit">
</form>
</div>
</div>
</section>
</body>
<footer class="foot">Copyright By Akku(akkupy.tech)</footer>
</html>