-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
75 lines (68 loc) · 1.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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Priya Pal | Home</title>
<link rel="shortcut icon" type="image/x-icon" href="imgs/favicon.ico">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/home.css">
</head>
<body>
<div class="nav">
<input type="checkbox" id="nav-check">
<div class="nav-header">
<div class="nav-title">
Priya Pal
</div>
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="nav-links">
<a class="current" href="index.html">Home</a>
<a href="html/projects.html" >Artworks</a>
<a href="html/contact.html" >Contact</a>
</div>
</div>
<div class="content">
<div class="key">
<h1>About</h1>
<div class="main-img">
<img id="dp" src="imgs/profile.jpg" alt="profile"></div>
<p id="about">Hello, I am Priya Pal.<br> Computer science and Engineering student.<br>Always curious about learning new things. <br>Ambivert. Coder. Astrophile. Philomath.</p></div>
<hr/>
<div class="key">
<h1>Skills</h1>
<ul id="skills">
<li><details>
<summary>
Front end development</summary>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul></details>
</li>
<li>Programming Language C++</li>
<li>Graphic Design</li>
<li>Creative Writing</li>
</ul></div>
<hr/>
<div class="key">
<h1>Hobbies</h1>
<ul id="hobby">
<li>Coding</li>
<li>Reading Books</li>
<li>Sketching, Calligraphy</li>
<li>Listening Music</li>
</ul>
</div>
<hr/>
</div>
</body>
</html>