-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
140 lines (121 loc) · 4.99 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
<!DOCTYPE html>
<html class="h-100">
<head>
<title>UiLite Portfolio</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Including the bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Social Icon fonts -->
<link rel="stylesheet" href="https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/style-cf.css?u8vidh">
<link rel="stylesheet" type="text/css" href="./styles/styles.css">
<!-- Including google fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:800" rel="stylesheet">
</head>
<body class="h-100">
<div class="sidebar d-flex align-items-center" style="">
<div class="main-info">
<h1 class="heading">Hello World! I AM <span class="highlight">Arvind Singh</span></h1>
<p class="text-muted">I am a software engineer, based in Delhi, IN</p>
<p class="text-muted">Founder at <a href="#">@uicardio</a></p>
<div class="social my-4">
<a target="_blank" href="https://instagram.com/heyarviind">
<span class="socicon-instagram"></span>
</a>
<a target="_blank" href="https://twitter.com/heyarviind">
<span class="socicon-twitter"></span>
</a>
<a target="_blank" href="https://dribbble.com/heyarviind">
<span class="socicon-dribbble"></span>
</a>
<a target="_blank" href="https://snapchat.com/add/heyarviind">
<span class="socicon-snapchat"></span>
</a>
</div>
<a href="#contact" class="btn btn-primary btn-lg">Contact</a>
<a class="btn btn-link" href="https://uicard.io/products/uilite-portfolio">Download</a>
</div>
</div>
<div class="main-content">
<section class="blue text-light">
<h2 class="heading">Skills</h2>
<div class="skill">
<h4>Go</h4>
<div class="progress">
<div class="progress-bar bg-blue" role="progressbar" style="width: 60%" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill">
<h4>Python</h4>
<div class="progress">
<div class="progress-bar bg-blue" role="progressbar" style="width: 80%" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill">
<h4>Node Js</h4>
<div class="progress">
<div class="progress-bar bg-blue" role="progressbar" style="width: 70%" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="skill">
<h4>Vue Js</h4>
<div class="progress">
<div class="progress-bar bg-blue" role="progressbar" style="width: 80%" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</section>
<section class="yellow">
<h2 class="heading">Work</h2>
<div id="timeline">
<div class="timeline-item clearfix">
<div class="timeline-icon"></div>
<div class="timeline-content">
<h6 class="date">2014 - 2016</h6>
<h5>Worked at easyprop.in</h5>
<p class="">Main content can go here lol</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="timeline-icon"></div>
<div class="timeline-content right">
<h6 class="date">2016 - 2018</h6>
<h5>Worked at quikmile</h5>
<p class="">Main content can go here lol</p>
</div>
</div>
</div>
</section>
<section id="contact" class="bg-light">
<h2 class="heading">Contact</h2>
<form>
<div class="form-row">
<div class="col">
<label>Name</label>
<input type="text" class="form-control" name="" placeholder="Name">
</div>
<div class="col">
<label>Email</label>
<input type="email" class="form-control" name="" placeholder="Email">
</div>
</div>
<div class="form-group">
<label>Message</label>
<textarea placeholder="Message" class="form-control" rows="4"></textarea>
</div>
<button class="btn btn-primary">Submit</button>
</form>
</section>
</div>
<script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-114708351-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-114708351-1');
</script>
</body>
<!-- some scripts -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</html>