You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
2.4 KiB

import { addBanner, addArticle, addTitle, addHeader, addParagraph, addSubHeader } from '/scripts/article.js';
import { addInset, addInsetList, addInsetCodeListing, addInsetBulletList } from '/scripts/inset.js';
import { addImageWithCaption, addButtonGroup } from '/scripts/visuals.js';
import { addSidebar} from '/scripts/sidebar.js'
import { addSyntax } from '/scripts/code.js';
import { addVocab } from '/scripts/japanese.js';
import { menu } from '/scripts/web_dev_buttons.js';
import { global_menu, local_menu } from '/scripts/grid_layout1.js'
const heading = document.querySelector(".heading");
const global = document.querySelector(".global_menu");
const local = document.querySelector(".local_menu");
const sidebar = document.querySelector(".sidebar");
const main = document.querySelector(".main_content");
heading.append(addTitle("Japanese Language"));
heading.append(addParagraph("Philip Osztromok"));
main.append(addHeader("WEEK 4 - 27th March 2024"))
main.append(addImageWithCaption("./images/Lesson4_A.png", "Katakana."));
main.append(addParagraph("I found the katakana a little bit easier to learn using my flashcards than the hiragana but it probably makes sense to learn the hiragana first because some of the descriptions intended to help you memorise the katakana say that it is similar to the corresponding hiragana. Katakana are used for foreign words as we will see in image 4C."));
main.append(addParagraph("One thing that helps when learning the katakana and I think this is true for the hiragana as well is that once you have learned the 46 basic characters of the katakana, you will find that it is easier to learn the other charaters because there are just the basic characters with a small embellishment. For example, if you take the five basic characters for ka, ki, ku, ke ko and add the two marks hat look like a double quote mark, you get ga, gi, gu, ge, go and similarly other sets of basic characters map to additional characters so knowing that means you don't need to learn the characters if you know all of the nasic characters and you know what these mappings are."));
main.append(addImageWithCaption("./images/Lesson4_B.png", "Conversation."));
main.append(addVocab("Kore wa, nihongo de nan desu ka", "What is this in Japanese?"));
main.append(addImageWithCaption("./images/Lesson4_C.png", "Vocabulary with Katakana."));
addSidebar("japanese");