-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 783 Bytes
/
index.html
File metadata and controls
28 lines (26 loc) · 783 Bytes
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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8" name="viewport" content="width=device-width,initial-scale=1.0">
<title>Sample ReactJs Application</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<style>
input[type=text] {
padding: 10px 10px;
border: 2px solid #ccc;
border-radius: 5px;
box-sizing:content-box;
}
input[type=text]:focus {
border: 2px solid #55a191;
outline:none;
}
</style>
<body>
<div id = "app"></div>
<script src = "index.js"></script>
</body>
</html>