저는 문자 그대로 방금 HTML을 사용하여 어떻게 9-5 직업에서 일하는지에 대한 더 나은 이해를 얻기 위해 Google Analytics 태그를 구현하는 방법을 연구하는 최종 목표를 가진 웹 사이트를 구축하는 방법을 배우기 시작했습니다.왜 href와 <a> 태그가 3을 사용하여 작동하지 않습니까?
HTML은 아직까지는 "<>"또는 href 태그를 사용할 때 크롬에서 파일을 열 때 아무 것도 나타나지 않는 것처럼 보입니다.
나는 텍스트 편집기로 3을 사용했으며, 몇 줄의 HTML을 작성하고 그것을 저장하려고 시도한 후에 소프트웨어 또는 뭔가를 구입하는 것에 대해 팝업을 사용했다. 메시지를 닫기 전에). 그래서 나는 이것이 숭고한 3 또는 제 코딩과 관련이 있는지 확실하지 않습니다. 아마도 내가 한 모든 일이 매우 간단하고 바보 같기 때문에 어떤 도움을 주시면 감사하겠습니다. 아래
HTML 코드 :
<html>
<head>
<title>MY WEBPAGE!</title>
</head>
<body>
<h1>Yo! Sup!</h1>
<h2>you can use header tags to create big heads in size 1-6</h2>
<br> <img src="https://i.ytimg.com/vi/dGpZEuXoFWw/hqdefault.jpg">
<br> <br> You need to use br tag to create a new line
<p>You can write in <strong>bold</strong>
<br> You can also write in <em>italics</em>
<br> Can you do <em><strong>both?</strong></em>
</p>
<p>You don't always have to use double br tags to start a new paragraph you can use the p tag, the good thing about p tag is it creates a space either side of the paragraph
</p>
What about underline?
<br> <br> You can use the a tag to link to another site <a google.com></a>
<br> <br> but you need to add a href in <a href="www.google.co.uk"></a>
<br> <br> You can also you the img tag to identify an image source
<br> <br> you can create an unordered list using the ul and li tags which are used to create lists for drop downs and navigations
<br> <br>
<ul>
<li> first list item </li>
<li> second list item </li>
<li> third list item </li>
</ul>
<br> you can create an ordered list (which basically just gives the list numbers) by using the ol tag
<ol>
<li> first list item </li>
<li> second list item </li>
<li> third list item </li>
</ol>
</body>
</html>
감사합니다!
를 들어 당신은 태그 –
'google.comgoogle'이 아닌''사이에 텍스트를 넣을 필요가있다. 태그는 페이지의 링크 위치와 페이지에 표시 할 텍스트를 알려야합니다. 이것은 또한 텍스트 편집에 사용 된 소프트웨어와 아무 관련이 없습니다. 당신이 보았던 메시지는 무언가였습니다. 당신이 그것을 계속 사용하기로 결정한다면 당신은 그것을 사야한다는 것을 상기시켜줍니다. 짜증나는 것 외에는 아무 효과가 없습니다. – OdatNurd
완벽한! 고맙습니다! –