Texts: Can you provide me HTML/CSS code for the following sample part?
Part 2:
As shown below, the hyperlink will direct you to the corresponding sections. For example, when C++ is clicked, it will bring you to the C++ section, and when C# is clicked, it will bring you to the C# section. The 4 pictures are included in the assignment package. Note that the actual picture is different from what is shown below. You need to resize the picture using the image attribute. No outer border is required.
Part 2: Hello World program in different languages
C++ C# Python HTML
C++
#include <iostream>
using namespace std;
void main() {
cout << "Hello World!" << endl;
}
C#
using System;
class Program {
static void Main() {
Console.WriteLine("Hello, World!");
}
}
Python
# Hello World program in Python
print("Hello World!")
HTML
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
Hello World!
</body>
</html>
HTML