diff --git a/2-ui/4-forms-controls/1-form-elements/article.md b/2-ui/4-forms-controls/1-form-elements/article.md
index 261074a1ba..f99bd482c3 100644
--- a/2-ui/4-forms-controls/1-form-elements/article.md
+++ b/2-ui/4-forms-controls/1-form-elements/article.md
@@ -8,19 +8,11 @@
폼은 특수한 컬렉션인 `document.forms`의 구성원입니다.
-<<<<<<< HEAD
-`document.forms`는 이름과 순서가 있는 '기명 컬렉션(named collection)'입니다. 개발자는 이 이름이나 순서를 사용해 문서 내의 폼에 접근할 수 있습니다.
+`document.forms`는 이름과 순서가 있는 *'기명 컬렉션(named collection)'* 입니다. 개발자는 이 이름이나 순서를 사용해 문서 내의 폼에 접근할 수 있습니다.
```js no-beautify
-document.forms.my - 이름이 'my'인 폼
-document.forms[0] - 문서 내의 첫 번째 폼
-=======
-That's a so-called *"named collection"*: it's both named and ordered. We can use both the name or the number in the document to get the form.
-
-```js no-beautify
-document.forms.my; // the form with name="my"
-document.forms[0]; // the first form in the document
->>>>>>> upstream/master
+document.forms.my; // 이름이 'my'인 폼
+document.forms[0]; // 문서 내의 첫 번째 폼
```
이름이나 순서를 사용해 원하는 폼을 가져온 다음에는 기명 컬렉션 `form.elements`를 사용해 폼의 요소를 얻을 수 있습니다.
@@ -44,15 +36,9 @@ document.forms[0]; // the first form in the document
```
-<<<<<<< HEAD
-그런데 개발을 하다 보면 이름이 같은 요소 여러 개를 다뤄야 하는 경우가 생기기도 합니다. 라디오 버튼을 다룰 때 이런 상황이 자주 발생하죠.
+그런데 개발을 하다 보면 이름이 같은 요소 여러 개를 다뤄야 하는 경우가 생기기도 합니다. 라디오 버튼이나 체크박스를 다룰 때 이런 상황이 자주 발생하죠.
-이때 `form.elements[name]`은 컬렉션이 된다는 사실을 이용할 수 있습니다. 예시를 살펴봅시다.
-=======
-There may be multiple elements with the same name. This is typical with radio buttons and checkboxes.
-
-In that case, `form.elements[name]` is a *collection*. For instance:
->>>>>>> upstream/master
+이때 `form.elements[name]`는 *컬렉션*이 된다는 사실을 이용할 수 있습니다. 예시를 살펴봅시다.
```html run height=40