0
How do I create my first HTML pageht
4 Antworten
+ 4
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>My first HTML page</title>
</head>
<body>
<div>
You can write here something
</div>
</body>
</html>
+ 4
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>My first HTML page</title>
<style >
body {
align :center ;
text -color:red;
}
</style >
</head>
<body>
<div class ="main">
</div>
</body>
</html>
0
Thanks
0
<!DOCTYPE html>
<html>
<head>
<meta charset=„UTF-8“>
<meta name=„viewport“
content=„width=device-width“>
</head>
<title>Your Title<title>
<body>
<div>
Your Text
</div>
<!—You can add more elements like <a>, <i>,<p>,<img>,…—>
</body>
</html>