-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticle.html
More file actions
79 lines (67 loc) · 1.52 KB
/
article.html
File metadata and controls
79 lines (67 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title> "경영 똑바로 하시오" 옐로카드 내미는 주주들 </title>
<style>
html {
/* outline: 1px dashed red;
outline: 1px fill black;*/
font-family: sans-serif;
}
/* SELECTOR {
}
q {
font-family: serif;
}
p:first-child {
width: 30%;
}
p:nth-child(3) {
width: 60%;
margin-left: 40%;
}
# specificity 가 더 높은게 적용되고
# specificity 가 같으면 뒤에있는것이 적용된다.
*/
p {
color: #444444;
}
div {
width: 300px;
float: left;
margin-right: 10px;
/*border: 1px solid #444444;*/
}
svg {
border: 1px solid #444444
}
</style>
</head>
<body>
<p>
전 세계 행동주의 투자자들의 운용 자산은 2009년 362억달러에서 2015년 1300억달러(약 147조원)까지 연평균 23.7%로 빠르게 성장하고 있다.
</p>
<div>
<svg> </svg>
</div>
<p>
지난해 국내 최초로 행동주의 펀드를 출시한 라임자산운용의 원종준 대표는 <q>스튜어드십 코드가 정착되고 지배구조 개선이 추진되면 한국에서 주가가 20% 이상 오를 기업들이 적지 않다</q>고 말했다.
</p>
<script>
// var a = 1; //; 은 문장의 끝을 의미함
// var b = 3;
// var c = a + b;
// console.log(c);
function add(a,b) {
var c = a + b;
return c;
}
var x = 2;
var y = 3;
var c = add(x,y);
window.console.log(c);
</script>
</body>
</html>