-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
127 lines (111 loc) · 3.81 KB
/
about.html
File metadata and controls
127 lines (111 loc) · 3.81 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
<title>About Me</title>
</head>
<body id="b-color">
<header>
<div class="menu-btn">
<div class="btn-line"></div>
<div class="btn-line"></div>
<div class="btn-line"></div>
</div>
<nav class="menu">
<div class="menu-branding">
<div class="portrait"></div>
</div>
<ul class="menu-nav">
<li class="nav-item">
<a href="index.html" class="nav-link"><span class="strike"></span>
Home
</a>
</li>
<li class="nav-item current">
<a href="about.html" class="nav-link"><span class="strike"></span>
About Me
</a>
</li>
<li class="nav-item">
<a href="work.html" class="nav-link"><span class="strike"></span>
My Projects
</a>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-link"><span class="strike"></span>
How To Reach Me
</a>
</li>
</ul>
</nav>
</header>
<main id="about">
<h1 class="lg-heading">
About
<span class="text-secondary">Me</span>
</h1>
<h2 class="sm-heading">
Let me tell you a few things...
</h2>
<div class="about-info">
<img src="img/sumit1.jpg" alt="John Doe" class="bio-image">
<div class="bio">
<h3 class="text-secondary">BIO</h3>
<p>I'm a full stack developer with knowledge in a lot of different technologies.Currently I am a third
year student at Dibrugarh University.I am a javascript Enthusiast and if
I don't know
something I always try to wrap my head around it quickly..</p>
</div>
<div class="job job-1">
<h3>Skills</h3>
<h6 style="padding:4px 0px">Tools & Technologies</h6>
<ul type=none class="cont-flex" style="padding:14px 0px;">
<li class="flex-item">HTML5 |</li>
<li class="flex-item">CSS3 |</li>
<li class="flex-item"> JAVASCRIPT |</li>
<li class="flex-item"> JQuery |</li>
<li class="flex-item"> Webpack |</li>
<li class="flex-item"> NODE.JS |</li>
<li class="flex-item"> Git |</li>
<li class="flex-item">MYSQL |</li>
<li class="flex-item"> PHPMYAdmin |</li>
<li class="flex-item"> PHP|</li>
<li class="flex-item"> C |</li>
<li class="flex-item"> JAVA</li>
<ul>
</div>
<div class="job job-2">
<h3>Design</h3>
<h6 style="padding:4px 0px">Front-end</h6>
<ul type=none class="cont-flex" style="padding:14px 0px;">
<li class="flex-item">Adobe Photoshop |</li>
<li class="flex-item">Adobe XD(Absorbing) |</li>
<li class="flex-item">Figma(Absorbing)</li>
</ul>
</div>
<div class="job job-3">
<h3>Interpersonal Skills</h3>
<ul type=none class="cont-flex" style="padding:14px 0px;">
<li class="flex-item">Communication |</li>
<li class="flex-item">Presenting |</li>
<li class="flex-item">Project Management </li>
</ul>
</div>
</div>
</main>
<footer id="main-footer">
Copyright © 2019
</footer>
<script src="js/main.js">
</script>
<script type="text/javascript">
console.log(mode);
const chbkMod =document.getElementById('b-color');//All backgrounds mods
</script>
</body>
</html>