-
Notifications
You must be signed in to change notification settings - Fork 2
/
newsdetail.html
38 lines (33 loc) · 1.97 KB
/
newsdetail.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.6.3.min.js" integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://kit.fontawesome.com/46a7bacb5b.css" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/46a7bacb5b.js" crossorigin="anonymous"></script>
<title>뉴스 상세페이지</title>
<style>
body {
margin: 0 auto;
max-width: 375px;
}
</style>
</head>
<body>
<header style="margin-top: 30px; text-align: right;">
<i class="fa-solid fa-magnifying-glass-plus fa-2x"></i>
<i class="fa-solid fa-xmark fa-2x"></i>
</header>
<main>
<iframe src="https://finance.naver.com/news/news_read.naver?article_id=0004813432&office_id=015&mode=LSS2D&type=0§ion_id=101§ion_id2=258§ion_id3=&date=20230222&page=1"
frameborder="0" style="display: block; width: 375px; height: 600px"></iframe>
</main>
<footer>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h655rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>