Since I use the Nonghyup card, I have to send the credit card usage statement for May to the tax office.
However, the Nonghyup made it possible to receive the statement as an html file.
html file won’t open in chrome
html file is opened in Microsoft Explorer. 아이폰 html 파일 열기
After this May, it is said that it will open in Chrome as well.
1. Mouse over the downloaded html file, right-click, and click Open
Stage 1………………………………………… ……………………………………………………………………………………………………
Mouse over the downloaded message icon and right-click JFactory
Step 2 ……………………………………….. ……………………………………………………………………………………
If you have micro explorer, click
If not, click on Micro Edge
Step 3 ……………………………………….. …………………………………………………………………………………………………………………… ………….
In the window that opens, click … in the right corner
Then click Reload in Internet Explorer mode.
Step 4 ……………………………………….. ………………………………………………………………………………………………
You will then be prompted to enter your password.
Enter your date of birth to open
You can check that it is open like this.
Open the html file of the income declaration card usage statement, open the file that can only be opened in Internet Explorer
How to open html file easily
Recently, while teaching coding or programming,
Interest in HTML is also growing.
In particular, during the banknote verification email
A verification email in HTML format
Sometimes you have to open it
Documents written in plain HTML
There are more cases than you might think to check.
What does it mean to open an HTML file?
There are two in total.
Seeing a file in action
looking at the source
First of all, to see the file in action
Literally, how does it appear on the screen?
It means seeing how it works.
looking at the source
through the internal source code.
It’s just figuring out the HTML file.
1. How to open an HTML file
Those who use bank notes
Occasionally, you may receive a file like this.
In this state, if you click the attached html file,
It will be downloaded immediately.
When this is displayed, click with the mouse!
The html file is directly in chrome or explorer,
It will open and connect with the wale.
So if you see it open like this
You must feel something
Oh, the html file is
in chrome, explorer, web
It’s an open file!
That’s the part.
Then the downloaded html file is
Where should I open it?
Just open it in Chrome, Explorer, or Whale.
If there is an HTML file in the folder
Once confirmed, simply drag and drop to open.
2. How to view the HTML source
Actually, there are many programs.
There are many ways to view the source, but
Usually the easiest way to see
It is using notepad.
Notepad is a very basic program.
About the great features of Notepad
There are surprisingly many people who do not know
that’s a pretty great program
Let me tell you one thing.
If you’ve been reading all the posts so far
I think you got a sense of what to do.
Just drag and drop it with notepad.
In Notepad, as well as viewing the source
You can even edit
If you need to edit something
Just edit and save.
How about an easy way to open an html file?
Did you find out easily?
complicated program installation or
What to do with a mouse click…
Of course, these methods are important
In my daily life, I usually easily
I showed you how to check it.
You probably won’t have to look at the sauce a lot.
Do you have any secrets to open HTML files?
I hope this helps.
I am curious to create a basic html file
Some people find it difficult to even open a file
Let’s write an article.
What is html?
Hypertext Markup Language, Hypertext Markup Language
As above, you can think of it as a markup language, a web document.
Programming languages are written in English.
It’s okay to feel rejected, but there’s no need to be afraid.
Strictly speaking, it is not a programming language,
A markup language for structuring web pages.
So what’s the difference with programming languages?
Unlike normal programming languages
using a tag
Because it creates a structure suitable for web documents,
You can’t do arithmetic, such as addition and subtraction.
blast furnace,
Because the calculation itself, which is the basis of programming, does not work
It is not a programming language.
(You look smart when you say this!)
create html file
Notepad is also possible, but I prefer to use an editor!
Now,
create a basic file
Let’s see how to open it together.
First of all, simply
Let’s create an html file with notepad.
1. Open Notepad. (Windows + R > type notepad)
2. Between the <h1> tags, write Mamu words in Korean or English.
* Check the html tag description at the bottom.
3. Press Save (Ctrl + S) to save it to your PC.
There is no difference in the method of saving a general document, but the extension must be saved as .html.
Otherwise, it will be saved as a different type of txt document.
Note) Please save the encoding as UTF-8.
4. Done!! It’s simple!!
3 ways to open html file
A simple test is a notepad! Professional coding is convenient for editors!
Now let’s open the saved file.
There are three main ways to open an html file.
It’s very simple, so just follow along.
1. Open with browser
Double-click the saved file.
When the browser is launched, the contents of the created file are displayed.
※ Be aware!
The browser interprets and displays the meaning of the written document by using the html tag.
Therefore, the <h1> tag you wrote will not appear in the browser.
caution! You can’t edit html in your browser!
If you click on the html file to open it, the settings of the connection program may be different for each personal PC.
As shown below, it is convenient to connect to your favorite browser.
Settings > Default Apps > Select Web Browser
2. Open with Notepad
The second way is
Open with notepad created above.
Just open Notepad and drag the saved html file.
Super simple!
※ Be aware!
The browser opens the created file,
As shown below, notepad is an editor that directly opens the html file and edits it, so don’t get confused!
Notepad is editable!
3. Open with dedicated editor
The third way is
You can open it with a dedicated editor that helps make coding easier.
In the future, the coding will be written through the editor,
If you are interested, it is good to know in advance.
Shortcut key: Ctrl + O
Just drag the file open menu or file to the editor window as above.
Visual Studio Code (VScode)
The editor is called the editor,
There are several editors among practitioners.
It doesn’t matter which one you use.
Check out editor reviews and recommendations here.
Tags and Elements
Meaning of tags and elements
1. Opening tag: It consists of the name of the element (p below), and opening and closing angle brackets.
2. Closing tag: This is the same as the opening tag, except that there is a forward slash (/) in front of the element name. It is located at the end of the element (in this case, the end of the paragraph), and if the closing tag is not written, strange results may occur, so write it carefully.
3. Content: The content of the element, in this case simple text.
4. Element: The opening tag, closing tag, and content are collectively called an element.
As in the example above, there are countless tags used in html other than the <p> tag.
Memorizing all tags at once is a waste of time.
In the future, frequently used tags will be memorized naturally, so here, it would be good to simply know what an html tag is.
Summarize
1. The html file can also be saved in notepad.
2. You can check the html file in your web browser. (not editable)
3. You can open a file by dragging and opening a file in Notepad or an editor.
4. It is possible to edit the contents in notepad and editor (editor).
5. HTML documents are created using tags.