Source Code Sample (1)
/*html-tag a(anchor)*/
<a href="https://fonts.google.com/" target="_blank">google.com</a>
Source Code Sample (2)
/*html font property --> #style.css/font-family*/
body {
font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
Source Code Sample (3)
/*html-tag img src(source)-->exchange various type of pc or smartphone to output*/
<div class="title">
<strong>title name</strong>
</div>
<source media="(max-width: 767px)" srcset="images/sample.jpg"> <!--smartphone-->
<source media="(min-width: 768px)" srcset="videos/sample.mp4"> <!--pc-->
<video autoplay loop muted preload>
<source src="./assets/videos/sample.mp4" type="video/mp4">
</video>
<img source src="./assets/images/sample.jpg" alt="">