HTML Basics:

* Added images
* Added buttons
* Added lists
vs2019/3_HTML5_and_CSS_Basics
jason.zhu 2021-04-22 14:17:18 +10:00
parent 872dc1edba
commit a14623dc24
11 changed files with 13 additions and 0 deletions

View File

@ -10,6 +10,7 @@
<ItemGroup> <ItemGroup>
<Folder Include="wwwroot\css\" /> <Folder Include="wwwroot\css\" />
<Folder Include="wwwroot\img\" />
</ItemGroup> </ItemGroup>
</Project> </Project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@ -6,5 +6,17 @@
</head> </head>
<body> <body>
<h1>Dutch Treat</h1> <h1>Dutch Treat</h1>
<p>This is <strong>going</strong> to be a site <a href="http://microsoft.com">where</a> we can buy dutch artists merchandise.</p>
<div>
<img src="img/VanGogh.jpg" />
<h3>Mug</h3>
<ul>
<li>Price: $9.99</li>
<li>Artist: Van Gogh</li>
<li>Title:</li>
<li>Description: Self-portrait</li>
</ul>
<button>Buy</button>
</div>
</body> </body>
</html> </html>