-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (60 loc) · 2.18 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Test</title>
<link rel="icon" type="text/css" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/design.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script
src="https://code.jquery.com/jquery-3.1.1.slim.min.js"
integrity="sha256-/SIrNqv8h6QGKDuNoLGA4iret+kyesCkHGzVUUV0shc="
crossorigin="anonymous">
</script>
</head>
<body>
<div id="loader" class="loader">
</div>
<div class="circle1">
<div class="circle2">
</div>
<div class="circle3">
</div>
<div class="circle4">
</div>
<div class="circle5">
</div>
<div class="circle6">
</div>
</div>
<section class="container-fluid">
<div id="col-lg-6">
<div class="content">
<div class="texts">
<h1>Hi!</h1>
<h2>I am <span>Oshan.</span></h2>
<h3>
I am a freshmen.<br>
And a web developer.<br>
<h4>I do Javascript. <br> I love pop and country music.</h4>
<h5><a href="mailto:oshan_shrestha@outlook.com">Say hello!</a>,<br><a href="https://facebook.com/shrestha.oshan">add me</a> or, <br><a href="https://twitter.com/shrestha_oshan">follow me</a>.</h5>
</div>
</div>
</div><!-- 6-col -->
<!-- <p>© Oshan</p> -->
</section>
<script type="text/javascript">
window.onload = function(){
$("#loader").addClass("load-complete");
$(".circle1").addClass("load-complete");
};
</script>
</body>
</html>