¿Por qué mi código aparece como texto (HTML usando vscode)?

programación


Cada vez que ejecuto el código, carga una página en blanco con ~/ y una carpeta con mi código.

Lo que he probado:

Este es mi código (** <—no incluido)

HTML
 **

	
		<title>CV
	
	
		<h1>Kenzo Kitembo</h1>
		<p>Software Engineer</p>
		
		<hr>
		<h2><ins>Summary</ins></h2>
		<p> My name is Kenzo and I'm a self taught SE looking forward to work with you!</p>
		<h2><ins>Experience</ins>
		 <li>Sololearn
		   <p><small> Learning Python and HTML alone as a teenager</small></p></li>		<li>Soon to be at College D
		   <p><small> Will be enrolling at D next year in the CS department</small></p></li>		
		
		<h2><ins>Skills</ins></h2>
		
			<table border="2"><tbody><tr>				<td>Languages</td>				<td>Python</td>				<td>HTML</td>			</tr>			<tr>				<td>Precise skill</td>				<td>OOP</td>				<td>Design</td>			</tr>		</tbody></table>

		<h2><ins>Contacts</ins></h2>
		<a href="https://opensea.io/collection/humans-of-the-universe" target="_blank">My Nfts</a>
		<a href="https://twitter.com/HumansoftheU" target="_blank">My twitter</a>
		
		<h2><ins>Write me a message</ins></h2>
		
			​Enter your information:<br><br>
			
			<br>
			
			<br>
			
			<br>
		
		<br>
		<br>
		
			<table border="2"><tbody><tr>				<td>Pleased to meet you!</td>			</tr>		</tbody></table>
		
		
**</h2>

Solución 1

Lo primero que noto es que tu <title> la etiqueta no está cerrada.
Lo que significa que no tienes ningún cuerpo de HTML.

Es muy posible que comprobar que todas las etiquetas coincidan solucione muchos problemas.

Solución 2

no tienes html ni body etiquetas tampoco.

En otras palabras, su HTML tiene un formato muy incorrecto.



コメント

タイトルとURLをコピーしました