-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
132 lines (112 loc) · 3.74 KB
/
test.html
File metadata and controls
132 lines (112 loc) · 3.74 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
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sigma</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- JQuery -->
<script type="text/javascript" src="js/jquery-2.2.3.min.js"></script>
<script type="text/javascript" src="js/typed.js"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap-theme.css"/>
<script src="bs/js/bootstrap.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="bs/css/bootstrap.min.css"/>
<link rel="stylesheet" href="bs/css/bootstrap-theme.css"/>
<script src="bs/js/bootstrap.min.js" type="text/javascript"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="css/mdb.min.css" rel="stylesheet">
<!-- Your custom styles (optional) -->
<link href="css/style.css" rel="stylesheet">
<link href="css/common.css" rel="stylesheet">
<!--fonts-->
<link href='https://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Slabo+27px' rel='stylesheet' type='text/css'>
<!-- material design-->
<link rel="stylesheet" href="mdl/material.min.css">
<link rel="stylesheet" type="text/css" href="material.min">
<link rel="stylesheet" href="https://code.getmdl.io/1.2.1/material.cyan-light_blue.min.css" />
<script src="mdl/material.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah" rel="stylesheet">
<!--styles-->
<style>
.typed-cursor{
opacity: 1;
-webkit-animation: blink 0.7s infinite;
-moz-animation: blink 07s infinite;
animation: blink 0.7s infinite;
font-weight: bolder;
font-size: 25px;
}
@keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-webkit-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-moz-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
.home{
background-color:#FFFFF;
color: #00acc1;
width:100%;
height:624px;
padding-top: 200px;
font-family: 'Gloria Hallelujah', cursive !important;
}
#complete{
font-size: 70px;
font-family: 'Gloria Hallelujah', cursive !important;
}
</style>
</head>
<body>
<!--nav bar-->
<div class="mdl-layout mdl-js-layout ">
<header class="mdl-layout__header ">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">Sigma</span>
<div class="mdl-layout-spacer"></div>
<nav class="mdl-navigation">
<a class="mdl-navigation__link " href="index.html">Home</a>
<a class="mdl-navigation__link" href="about.html">About</a>
<a class="mdl-navigation__link" href="team.html">Our Team</a>
<a class="mdl-navigation__link" href="project.html">Projects</a>
<a class="mdl-navigation__link" href="contact.html">Contact</a>
</nav>
</div>
</header>
</div>
<!--navbar ends-->
<div class="text-center home" >
<h1 id="complete"></h1>
</div>
<button onclick="a()">click</button>
<script>
$(function(){
$("#complete").typed({
strings: ["Welcome To ...","Sigma !"],
typeSpeed: 200,
contentType: 'html'
});
});
function a(){
$.get( "test.html", {}, function( data ) {
alert(data);
});
}
</script>
</body>
</html>