Compare commits
2 Commits
872dc1edba
...
5af243aff3
Author | SHA1 | Date | |
---|---|---|---|
|
5af243aff3 | ||
|
a14623dc24 |
@ -10,6 +10,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="wwwroot\css\" />
|
||||
<Folder Include="wwwroot\img\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
BIN
DutchTreat/wwwroot/img/SK-A-2344.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
DutchTreat/wwwroot/img/SK-A-2860.jpg
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
DutchTreat/wwwroot/img/SK-A-3262.jpg
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
DutchTreat/wwwroot/img/SK-A-4050.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
DutchTreat/wwwroot/img/SK-A-4674.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
DutchTreat/wwwroot/img/SK-A-4691.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
DutchTreat/wwwroot/img/SK-A-4885.jpg
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
DutchTreat/wwwroot/img/SK-A-5033.jpg
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
DutchTreat/wwwroot/img/VanGogh.jpg
Normal file
After Width: | Height: | Size: 7.2 KiB |
@ -6,5 +6,47 @@
|
||||
</head>
|
||||
<body>
|
||||
<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>
|
||||
|
||||
<form>
|
||||
<label>Your Name:</label>
|
||||
<br />
|
||||
<input />
|
||||
<br />
|
||||
|
||||
<label>Email:</label>
|
||||
<br />
|
||||
<input type="email"/>
|
||||
<br />
|
||||
|
||||
<label>Subject:</label>
|
||||
<br />
|
||||
<input type="text" />
|
||||
<br />
|
||||
|
||||
<label>Password:</label>
|
||||
<br />
|
||||
<input type="password" />
|
||||
<br />
|
||||
|
||||
<label>Message</label>
|
||||
<br />
|
||||
<textarea rows="4"></textarea>
|
||||
<br />
|
||||
|
||||
<input type="submit" value="Send Message"/>
|
||||
|
||||
</form>
|
||||
</body>
|
||||
</html>
|