forked from CodeYourFuture/HTML-CSS-Coursework-Week4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
142 lines (142 loc) · 4.53 KB
/
Copy pathproject.html
File metadata and controls
142 lines (142 loc) · 4.53 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!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" />
<title>Document</title>
<link rel="stylesheet" href="./css/project.css" />
</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="#" 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 id="main-head">
<div id="box"></div>
<h1>Projects</h1>
</div>
<p id="head-parag">
I'm a paragraph. Click here to add your own text and edit me. It’s easy.
Just click “Edit Text” or double click me to add your own content and
make changes to the font. I’m a great place for you to tell a story and
let your users know a little more about you
</p>
<!-- -->
<div class="project">
<div class="project-description">
<div id="div-head">
<div id="stick"></div>
<div>
<h2>Project Name 01</h2>
<h3>Role Title</h3>
</div>
</div>
<p>
I'm a paragraph. Click here to add your own text and edit me. It’s
easy. Just click “Edit Text” or double click me to add your own
content and make changes to the font. I’m a great place for you to
tell a story and let your users know a little more about you.
</p>
</div>
<div class="project-image">
<img src="./designs/p1.webp" alt="Project Image" />
</div>
</div>
<!-- -->
<div class="project">
<div class="project-description">
<div id="div-head">
<div id="stick"></div>
<div>
<h2>Project Name 02</h2>
<h3>Role Title</h3>
</div>
</div>
<p>
I'm a paragraph. Click here to add your own text and edit me. It’s
easy. Just click “Edit Text” or double click me to add your own
content and make changes to the font. I’m a great place for you to
tell a story and let your users know a little more about you.
</p>
</div>
<div class="project-image">
<img src="./designs/p2.webp" alt="Project Image" />
</div>
</div>
<!-- -->
<div class="project">
<div class="project-description">
<div id="div-head">
<div id="stick"></div>
<div>
<h2>Project Name 03</h2>
<h3>Role Title</h3>
</div>
</div>
<p>
I'm a paragraph. Click here to add your own text and edit me. It’s
easy. Just click “Edit Text” or double click me to add your own
content and make changes to the font. I’m a great place for you to
tell a story and let your users know a little more about you.
</p>
</div>
<div class="project-image">
<img src="./designs/p3.webp" alt="Project Image" />
</div>
</div>
</main>
<!-- FOOTER -->
<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>
</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>
</body>
</html>