[2주차 숙제]
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<title>스파르타코딩클럽 | 부트스트랩 연습하기</title>
<link href="https://fonts.googleapis.com/css2?family=Jua&display=swap" rel="stylesheet">
<style>
* {
font-family: 'Jua', sans-serif;
}
.item-img {
width: 500px;
height: 300px;
background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRZ1BeAZjkyIV6HYjz_EJf4-R4tXoWJ_YZlzw&usqp=CAU');
background-position: center;
background-size: cover;
}
.price {
font-size: 20px;
}
.item-desc {
width: 500px;
margin: 20px 0px 20px 0px;
}
.item-order {
width: 500px;
}
.btn-order {
margin: auto;
width: 200px;
display: block;
}
.wrap {
width: 500px;
margin: auto;
}
.rate {
color: blue;
}
</style>
<script>
$(document).ready(function () {
get_rate();
});
function get_rate(){
$.ajax({
type: "GET",
url: "http://spartacodingclub.shop/sparta_api/rate",
data: {},
success:function (response) {
let now_rate = response['rate'];
$('#now_rate').text(now_rate);
}
})
}
function order() {
alert('주문이 완료되었습니다~!');
}
</script>
이 양초는 특별한 힘을 지니고~~~~~
달러-원 환율: 1219.15
[숙제 평가]
-,_ 오타때문에 쓸데없이 시간을 뺏겨 아쉬웠다.
ajax를 활용하여 잘한거같다.
[2주차 소감]
2주차 수업을 듣고나서 점점 어려워 지는것이 느껴졌다. 그래도 배움을 통해 성장하는 내 모습을 볼 수 있었다.
3주차부터 파이썬을 듣게 되는데 내일배움캠프에서도 파이썬이 중요하므로 좀 더 노력해야겠다.