-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPetes website.html
43 lines (42 loc) · 1.01 KB
/
Petes website.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<head>
<title>Peter S. Parker</title>
<style>
body {
text-align: center;
background: url("");
background-size: cover;
background-position: center;
color: black;
font-family: Times;
}
p {
font-size: 24px;
}
input {
margin: 10px;
border: 10px;
border-color: red;
padding: 10px;
font-size: 24px;
font-weight: bold;
background-color: lightblue;
}
input[type="submit"] {
background: green;
color: yellow;
}
.large-pngs {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<img src="http://petersparker.com/wp-content/uploads/2021/07/ProfileOvalSmaller.jpg" height="100">
<p>Hi! I'm Pete, a west coast based marketer. Say hello!</p>
<input type="email" placeholder="Enter your email here">
<input type="submit">
<p>
<img src="http://petersparker.com/wp-content/uploads/2021/07/periodic-table-of-web-design-process-new-design-group.png" class="large-pngs">
</body>