forked from CodeYourFuture/HTML-CSS-Coursework-Week4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (116 loc) · 3.59 KB
/
index.html
File metadata and controls
120 lines (116 loc) · 3.59 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
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Add a link to your custom CSS here -->
<link rel="stylesheet" href="./css/main.css" />
<title>Responsive grid project</title>
</head>
<body>
<header>
<div class="header">
<div class="left">
<p id="box"></p>
<a href="./index.html">
<p style="font-size: 24px">
<b>Maya Nelson</b> / Project Manager
</p></a
>
</div>
<nav class="right">
<ul>
<li><a href="./index.html" style="color: #0150fd">ABOUT ME</a></li>
<li><a href="./resume.html">RESUME</a></li>
<li><a href="./project.html">PROJECTS</a></li>
<li><a href="./contact.html">CONTACT</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="card">
<img src="./designs/download.jpeg" alt="Maya Nelson" />
<h2>Maya<br />Nelson</h2>
<p style="background-color: #0150fd; width: 50px; height: 2px"></p>
<div id="card-buttom">
<ul class="social-media">
<li>
<a href="#"><img src="./designs/face-black.png" alt="" /></a>
</li>
<li>
<a href="#"><img src="./designs/in-black.png" alt="" /></a>
</li>
<li>
<a href="#"><img src="./designs/in-black.png" alt="" /></a>
</li>
<li>
<a href="#"><img src="./designs/twitter-black.png" alt="" /></a>
</li>
</ul>
</div>
</div>
<div class="container1"></div>
<div class="container2">
<br /><br /><br />
<div class="white-card">
<h1>Hello</h1>
<h2>Here's who I am & what I do</h2>
<button id="resume-btn">RESUME</button>
<button id="project-btn">PROJECTS</button>
<p>
I'm a paragraph. Click here to add your own text<br />
and edit me. It`s easy. Just click “Edit Text” or<br />
double click me to add your own content and<br />
make changes to the font.
</p>
<br />
<p>
I`m a great place for you to tell a story and let<br />
your users know a little more about you.
</p>
</div>
</div>
</main>
<footer>
<p>
© 2035 by Maya Nelson.<br />
Powered and secured by Wix
</p>
<div>
<div>
<p><b>Call</b></p>
<p>123-456-7890</p>
</div>
<div>
<p><b>Write</b></p>
<p><a href="">[email protected]</a></p>
</div>
<div>
<p><b>Follow</b></p>
<ul>
<li>
<a
href="./designs/face-black.png"
style="height: 5px; width: 10px; background-color: black"
></a>
</li>
<li>
<a href="./designs/twitter-black.png" style="height: 5px"></a>
</li>
<li><a href="./designs/in-black.png" style="height: 5px"></a></li>
<li>
<a href="./designs/insta-black.png" style="height: 5px"></a>
</li>
</ul>
</div>
</div>
</footer>
<!-- Please leave this in to credit the creators of this design -->
<p>
This website design was created by Wix.com, and is used here for strictly
educational purposes.
</p>
</body>
</html>