blob: 0f2ed1d95267515f93751d521516a3cb606b76bb (
plain) (
blame)
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
|
<template>
<div>
<h1>Pays - La Chine</h1>
<p>Par Andrew Lee</p>
<h2>Le propre nom de la Chine</h2>
<p>République populaire de Chine<br />(中华人民共和国)</p>
<img
src="~/assets/img/Flag_of_the_Peoples_Republic_of_China.svg"
height="20%"
width="20%"
/>
<h2>Mon nom chinois</h2>
<p>(李家俊) Lee Gar-Jun</p>
<!-- Put the meanings of this name -->
<img src="~/assets/img/674e-stroke-order.gif" height="10%" width="10%" />
<img src="~/assets/img/5bb6-stroke-order.gif" height="10%" width="10%" />
<img src="~/assets/img/4fca-stroke-order.gif" height="10%" width="10%" />
<br />
</div>
</template>
<script>
export default {
components: {},
}
</script>
|