Ken Schaefer
2 years ago
16 changed files with 118 additions and 9 deletions
@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="UTF-8" /> |
||||
<title>My Upcoming Challenges</title> |
||||
<link rel="preconnect" href="https://fonts.gstatic.com" /> |
||||
<link |
||||
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&family=Oswald:wght@700&display=swap" |
||||
rel="stylesheet" |
||||
/> |
||||
<link href="styles/shared.css" rel="stylesheet" /> |
||||
<link href="styles/full-week.css" rel="stylesheet" /> |
||||
</head> |
||||
<body> |
||||
<h1>My Upcoming Challenges</h1> |
||||
<a href="index.html">View Today's Challenge</a> |
||||
<p>Repeat what I learned about HTML & CSS</p> |
||||
<p>Do the exercises on HTML & CSS</p> |
||||
<p>Dive deeper into HTML & CSS and build more complex websites</p> |
||||
</body> |
||||
</html> |
After Width: | Height: | Size: 27 KiB |
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="UTF-8"> |
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||
<link rel="preconnect" href="https://fonts.gstatic.com" /> |
||||
<link |
||||
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&family=Oswald:wght@700&display=swap" |
||||
rel="stylesheet" |
||||
/> |
||||
<link href="styles/shared.css" rel="stylesheet" /> |
||||
<link href="styles/daily-challenge.css" rel="stylesheet" /> |
||||
<title>My Daily Challenge</title> |
||||
</head> |
||||
<body> |
||||
<img src="images/challenges-trophy.jpg" alt="A trophy" /> |
||||
<h1>Max' Challenge for Wednesday, August 4th</h1> |
||||
<p id="todays-challenge"> |
||||
Learn about the basics of web development - specifically dive into HTML & |
||||
CSS. |
||||
</p> |
||||
<p>Explore the <a href="full-week.html">full week</a>.</p> |
||||
</body> |
||||
</html> |
@ -0,0 +1,15 @@
|
||||
body { |
||||
margin: 50px; |
||||
} |
||||
|
||||
img { |
||||
width: 200px; |
||||
height: 200px; |
||||
border-radius: 100px; |
||||
} |
||||
|
||||
#todays-challenge { |
||||
color: rgb(170, 96, 83); |
||||
font-weight: bold; |
||||
font-size: 52px; |
||||
} |
@ -0,0 +1,23 @@
|
||||
body { |
||||
background-color: rgb(233, 215, 207); |
||||
text-align: center; |
||||
color: rgb(83, 75, 75); |
||||
} |
||||
|
||||
h1 { |
||||
font-family: 'Oswald', sans-serif; |
||||
} |
||||
|
||||
p { |
||||
font-family: 'Fira Sans', sans-serif; |
||||
} |
||||
|
||||
a { |
||||
font-family: 'Fira Sans', sans-serif; |
||||
text-decoration: none; |
||||
color: rgb(167, 1, 78); |
||||
} |
||||
|
||||
a:hover { |
||||
text-decoration: underline; |
||||
} |
@ -0,0 +1,13 @@
|
||||
<?php |
||||
if(isset($_POST['searchterm'])) |
||||
{ |
||||
echo htmlspecialchars($_POST['searchterm'], ENT_QUOTES); |
||||
} |
||||
?> |
||||
|
||||
<form action="" method="post"> |
||||
User name: <input type="text" name="name"><br> |
||||
Password: <input type="password" name="password"><br> |
||||
|
||||
<input type="submit" value="Search"> |
||||
</form> |
@ -0,0 +1,4 @@
|
||||
.card { |
||||
border-radius: 12px; |
||||
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25); |
||||
} |
Loading…
Reference in new issue