forked from GCA-Classroom/01-profile-card-html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (116 loc) · 3.58 KB
/
index.html
File metadata and controls
118 lines (116 loc) · 3.58 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blake's Profile Card</title>
<style>
body {
color: white;
margin: 0;
padding: 20px;
font-family: Arial, sans-serif;
background-color: #001a4d;
}
h1, h2 {
background: linear-gradient(to bottom, #001a4d, #66b3ff);
padding: 10px;
border-radius: 5px;
}
form {
margin-bottom: 20px;
}
input {
display: block;
margin: 10px 0;
padding: 10px;
width: 100%;
max-width: 400px;
border: none;
border-radius: 5px;
}
button {
padding: 10px 20px;
background-color: #66b3ff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.cards-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 20px;
}
.card {
background-color: rgba(102, 179, 255, 0.2);
padding: 20px;
border-radius: 8px;
border: 1px solid #66b3ff;
}
.card h3 {
margin-top: 0;
color: #66b3ff;
}
</style>
</head>
<body>
<h1>Blake's Profile Card</h1>
<h2>Software Developer</h2>
<p>Passionate about building elegant solutions and creating great user experiences.</p>
<h2>Experiences</h2>
<div class="cards-container">
<div class="card">
<h3>Experience 1</h3>
<p>Job Title: <strong></strong></p>
<p>Company: <strong></strong></p>
<p>Duration: <strong></strong></p>
</div>
<div class="card">
<h3>Experience 2</h3>
<p>Job Title: <strong></strong></p>
<p>Company: <strong></strong></p>
<p>Duration: <strong></strong></p>
</div>
<div class="card">
<h3>Experience 3</h3>
<p>Job Title: <strong></strong></p>
<p>Company: <strong></strong></p>
<p>Duration: <strong></strong></p>
</div>
<div class="card">
<h3>Experience 4</h3>
<p>Job Title: <strong></strong></p>
<p>Company: <strong></strong></p>
<p>Duration: <strong></strong></p>
</div>
</div>
<h2>Project Examples</h2>
<div class="cards-container">
<div class="card">
<h3>Project 1</h3>
<p>Name: <strong></strong></p>
<p>URL: <strong><a href="#" style="color: #66b3ff;"></a></strong></p>
<p>Description: <strong></strong></p>
</div>
<div class="card">
<h3>Project 2</h3>
<p>Name: <strong></strong></p>
<p>URL: <strong><a href="#" style="color: #66b3ff;"></a></strong></p>
<p>Description: <strong></strong></p>
</div>
<div class="card">
<h3>Project 3</h3>
<p>Name: <strong></strong></p>
<p>URL: <strong><a href="#" style="color: #66b3ff;"></a></strong></p>
<p>Description: <strong></strong></p>
</div>
<div class="card">
<h3>Project 4</h3>
<p>Name: <strong></strong></p>
<p>URL: <strong><a href="#" style="color: #66b3ff;"></a></strong></p>
<p>Description: <strong></strong></p>
</div>
</div>
</body>
</html>