blob: 2e775a8aeed2723621bf8103dfd7e59a63503ab7 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<template>
<div>
<h1>La culture de Chine</h1>
<h2>La nourriture de Chine</h2>
<img
src="https://chinatown.co.uk/wp-content/uploads/2018/06/CE-Dim-Sum-Event_02-min.jpg"
width="25%"
height="25%"
/>
<img
src="https://steamykitchen.com/wp-content/uploads/2010/03/xiao-long-bao.jpg"
width="20%"
height="20%"
/>
<img
src="http://www.fourpoundsflour.com/wp-content/uploads/2018/02/Sarah_Chinese16.jpg"
width="20%"
height="20%"
/>
<h2>Fêter le Nouvel An</h2>
<iframe
:src="'https://www.youtube.com/embed/Bs0GuU0cUtw'"
frameborder="0"
width="1050"
height="550"
allowfullscreen
/>
<h2>Ordinateur</h2>
<p>Le premier outil de calcul - Un boulier.</p>
<img src="~/assets/img/IMG_20201011_175417.jpg" width="30%" height="30%" />
<p>Mon boulier chez moi.</p>
<h2>Un jeu de société</h2>
<img src="~/assets/img/IMG_20201011_175523.jpg" width="30%" height="30%" />
<p>Le Jeu de mah-jong.</p>
<h1>La musique chinoise</h1>
<p>HKT4_Track05</p>
<audio controls>
<source src="/HKT4_Track05.mp3" />
Your browser does not support the audio tag.
</audio>
<br />
</div>
</template>
<script>
export default {
components: {},
}
</script>
|