-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
76 lines (67 loc) · 2.57 KB
/
about.html
File metadata and controls
76 lines (67 loc) · 2.57 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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Sulphur+Point&display=swap" rel="stylesheet">
<title>About</title>
<link rel="stylesheet" href="css/blog.css">
<link rel="stylesheet" href="css/about.css">
</head>
<body>
<div class="body">
<div class="nav">
<div class="socialMedia">
<a href="Contact.html" class="social"><img src="png/facebook.png"></a>
<a href="Contact.html" class="social"><img src="png/twitter.png"></a>
<a href="Contact.html" class="social"><img src="png/google-plus.png"></a>
<a href="Contact.html" class="social"><img src="png/whatsapp.png"></a>
</div>
<div class="flex">
<div class="name">
<a href="#"><h1>Subhash</h1></a>
</div>
<div class="menu">
<ul>
<li class="link">
<a href="home.html">Home</a>
</li>
<li class="link">
<a href="about.html">About</a>
</li>
<li class="link">
<a href="project.html">Project</a>
</li>
<li class="link">
<a href="post.html">My Post</a>
</li>
<li class="link">
<a href="Contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</div>
<div class="intro">
<div id="about">
<div class="skill">
<ul>
<h1>My skills</h1>
<li>Python</li>
<li>C</li>
<li>C++</li>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
</div>
<div class="content">
<h1> About Me:</h1>
<p>I am an undergraduate student at Indian Institue of Information Technology,
Lucknow pursuing Btech in Computer Science. A person with a foolishly wide
range of interests in Space, Movie, Coding, Gaming, Music and Art. Wherever possible,
I like to experiment with different media in my work.</p>
</div>
</div>
</div>
</div>
</body>
</html>