Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/bin/Debug/<target-framework>/<project-name.dll>",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
},
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
15 changes: 7 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,18 @@ <h1>Profile Name</h1>
<div class='address'>Address</div>

<div class='contact'>
<strong>Email:</strong> <a href='mailto:firstname@surname.com'>firstname@surname.com</a>
<strong>Email:</strong> <a href='mailto:afraz91@wgu.edu'>afraz91@wgu.edu</a>
</div>
<div>
<strong>Telephone:</strong> 0207 955 3705
<strong>Telephone:</strong> 702-743-9271
</div>

<div class='categories'>
<h2>Categories</h2>
<h2>categories</h2>
<ul>
<li>Lorem ipsum</li>
<li>dolor sit</li>
<li>amet</li>
<li>dolor sit</li>
<li>Sweet Tea</li>
<li>Water</li>
<li>Soda</li>
</ul>
</div>

Expand All @@ -34,7 +33,7 @@ <h2>Categories</h2>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
commodo consequat. Duis aute irure dolor in reprehenderit in voluntary
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id
est laborum.
Expand Down
22 changes: 12 additions & 10 deletions main.css
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
.profile {
display: inline-block;
padding: 0px 60px;
background-color: aquamarine;
padding: 30px;
background-color: white;
font-size: 20px;
}

.biography {
display: inline-block;
border: 50px solid red;
background-color: cadetblue;
padding: 1em;
font-size: 5px;
border: 5px solid black;
background-color: gray;
padding: 30px;
font-size: 18px;
}

.footer-3-wide {
display: inline-block;
border: 5px solid black;
background-color: yellow;
padding: 1em;
font-size: 50px;
font-weight: 600;
background-color: pinkgit ;
padding: 30px;
font-size: 25px;
}
body {
background-color: white;
}
1 change: 1 addition & 0 deletions practice-for-prepwork-css-refactoring
Submodule practice-for-prepwork-css-refactoring added at 188564