2025-10-31 12:55:51 -06:00
|
|
|
<ConstraintLayout>
|
|
|
|
|
<BoxView
|
|
|
|
|
align_top_to_top="parent"
|
|
|
|
|
align_left_to_left="parent"
|
|
|
|
|
align_bottom_to_bottom="parent"
|
|
|
|
|
align_right_to_right="parent"
|
2025-11-10 11:39:02 -07:00
|
|
|
width="1200"
|
2025-10-31 12:55:51 -06:00
|
|
|
height="parent"
|
|
|
|
|
>
|
2025-11-10 11:39:02 -07:00
|
|
|
<ColoredRectView r="60" g="30" b="30" />
|
2025-11-10 11:08:23 -07:00
|
|
|
</BoxView>
|
|
|
|
|
|
2025-10-31 12:55:51 -06:00
|
|
|
<BoxView
|
|
|
|
|
align_top_to_top="parent"
|
2025-11-10 11:39:02 -07:00
|
|
|
align_left_to_left="parent"
|
2025-10-31 12:55:51 -06:00
|
|
|
align_bottom_to_bottom="parent"
|
2025-11-10 11:39:02 -07:00
|
|
|
align_right_to_right="parent"
|
|
|
|
|
width="1150"
|
|
|
|
|
height="parent"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<VerticalLayout>
|
|
|
|
|
<BoxView width="parent" height="60" />
|
|
|
|
|
<BoxView width="parent" height="30">
|
|
|
|
|
<TextView
|
|
|
|
|
text="This is a webpage that is NOT made in HTML!"
|
|
|
|
|
font_size="30."
|
|
|
|
|
/></BoxView>
|
|
|
|
|
|
|
|
|
|
<!-- First Paragraph -->
|
|
|
|
|
<BoxView width="parent" height="60" />
|
|
|
|
|
<BoxView height="30">
|
|
|
|
|
<TextView
|
|
|
|
|
text="Modern web browsers have a function called 'WebAssembly' that runs compiled,"
|
|
|
|
|
font_size="30."
|
|
|
|
|
/>
|
|
|
|
|
</BoxView>
|
|
|
|
|
<BoxView height="30">
|
|
|
|
|
<TextView
|
|
|
|
|
text="high performance code in place of JavaScript. Additionally, there is an element"
|
|
|
|
|
font_size="30."
|
|
|
|
|
/>
|
|
|
|
|
</BoxView>
|
|
|
|
|
<BoxView height="30">
|
|
|
|
|
<TextView
|
|
|
|
|
text="called '<canvas>' that can be used to draw graphics."
|
|
|
|
|
font_size="30."
|
|
|
|
|
/>
|
|
|
|
|
</BoxView>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Second Paragraph -->
|
|
|
|
|
<BoxView width="parent" height="60" />
|
|
|
|
|
<BoxView height="30">
|
|
|
|
|
<TextView
|
|
|
|
|
text="Instead of working on any kind of sane programming language, I have been working"
|
|
|
|
|
font_size="30."
|
|
|
|
|
/></BoxView>
|
|
|
|
|
<BoxView height="30">
|
|
|
|
|
<TextView
|
|
|
|
|
text="to essentially write my own version of HTML inside WebAssembly. If you open the"
|
|
|
|
|
font_size="30."
|
|
|
|
|
/></BoxView>
|
|
|
|
|
<BoxView height="30">
|
|
|
|
|
<TextView
|
|
|
|
|
text="browser's developer tools, you will see the very strange looking HTML."
|
|
|
|
|
font_size="30."
|
|
|
|
|
/></BoxView>
|
|
|
|
|
|
2025-11-10 11:54:39 -07:00
|
|
|
|
|
|
|
|
<BoxView width="parent" height="60" />
|
|
|
|
|
<BoxView height="30">
|
|
|
|
|
<TextView
|
|
|
|
|
text="Also, I previously had another version of this website that had the tabs required."
|
|
|
|
|
font_size="30."
|
|
|
|
|
/></BoxView>
|
|
|
|
|
<BoxView height="30">
|
|
|
|
|
<TextView
|
|
|
|
|
text="for the student portfolio assignment. Tell me if you want me to re-host it to grade."
|
|
|
|
|
font_size="30."
|
|
|
|
|
/></BoxView>
|
|
|
|
|
|
2025-11-10 11:39:02 -07:00
|
|
|
</VerticalLayout>
|
|
|
|
|
</BoxView>
|
|
|
|
|
|
|
|
|
|
<BoxView width="300" height="100"
|
|
|
|
|
align_left_to_left="parent"
|
|
|
|
|
align_top_to_top="parent"
|
|
|
|
|
align_right_to_right="parent"
|
2025-10-31 12:55:51 -06:00
|
|
|
>
|
2025-11-10 11:39:02 -07:00
|
|
|
<TextView text="Hello!" font_size="60." />
|
2025-10-31 12:55:51 -06:00
|
|
|
</BoxView>
|
|
|
|
|
</ConstraintLayout>
|