-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
54 lines (48 loc) · 1.6 KB
/
test.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
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-4">
<h1 style="color: red;">Hello Friends</h1>
</div>
<div class="col-sm-8">
<h4> hello other friends </h4>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="www.google.com" class="class textBox">hello</a>
<img src = "/Users/ryanluo/somePath/image.jpg" id = "boop"/>
</div>
<div class="col-sm-6">
<ul>
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
</ul>
</div>
</div>
<div class="row">
<button type="button" class="btn btn-primary">Primary</button>
</div>
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery.js"></script>
<script>
var x = 0;
console.log("what up");
$(document).ready(function(){
$('body').click(function(clickedEvent){
$(clickedEvent.target).css('color','red');
});
});
</script>
</body>
</html>