forked from microverseinc/fcc-test-suite-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththe_main_project.html
175 lines (145 loc) · 5.23 KB
/
the_main_project.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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!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">
<title>Document</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<<<<<<< HEAD
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
=======
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<div class="container">
<div class="left">
>>>>>>> d90082667bde27e890ac272ce047f3dbc8755dbb
<nav id="navbar">
<h1>
Technical Documentation Page
</h1>
<a class="nav-link" href="#Simple_html_page">Go to Main-Section</a>
<a class="nav-link" href="#Contact_Us">Go to Contact Us</a>
<a class="nav-link" href="#Profile">Go to Profile</a>
<a class="nav-link" href="#Career">Go to Career-Section</a>
<a class="nav-link" href="#SEO_Tools">Go to SEO Section</a>
</nav>
<div id="main-doc">
<div id = "Simple_html_page "class="main-section">
<h4>
Simple Html Page
</h4>
<p>
Root html page
</p>
<p>
You can use HTML, JavaScript, and CSS to complete this project.
Plain CSS is recommended because that is what the lessons have covered so far and you should get some practice with plain CSS. You can use Bootstrap or SASS if you choose. Additional technologies (just for example jQuery, React, Angular, or Vue) are not recommended for this project, and using them is at your own risk.
Other projects will give you a chance to work with different technology stacks like React. We will accept and try to fix all issue reports that use the suggested technology stack for this project. Happy coding!
</p>
<ol>
<li>HTML</li>
<li>JavaScript</li>
<li>CSS</li>
</ol>
<ol>
<li>HTML</li>
<li>JavaScript</li>
<li>CSS</li>
</ol>
<code>
x = 5;<br>
p = 6;<br>
l = x + p;
</code>
</div>
<div id = "Contact_Us" class="main-section">
<h4>
Contact Us.
</h4>
<ol>
<li>Zohaib</li>
<li>Sunday</li>
<li>Microverse_Best_Team</li>
</ol>
<ol>
<li>Zohaib</li>
<li>Precious</li>
<li>Microverse_Team2</li>
</ol>
<p>
We are open to discuss futher, please write us on the email below why you are the right match for this position and we will get in touch.
</p>
<p>
We are open to discuss futher, please write us on the email below why you are the right match for this position and we will get in touch.
</p>
<code>
n = 5;<br>
s = 6;<br>
z = s % n;
</code>
</div>
<div id = "Profile" class="main-section">
<h4>
Profile.
</h4>
<ol>
<li><a href="#">
Zohaib</a></li>
<li><a href="#">
Sunday</a></li>
<li><a href="https://github.com/OdongAlican/fcc-test-suite-template">
MIcroverse_Collaboration_Repo</a></li>
</ol>
<p>
We deal in next genertation technologies.
</p>
<p>
Microverse is a startup in stealth mode. Stay tuned for upcoming announcements.<br/>
For further inquiries please send an email to
</p>
<code>
n = 5;<br>
s = 6;<br>
z = s / n;
</code>
</div>
<div id = "Career" class="main-section">
<h4>
Career Prospects.
</h4>
<p>
Soft Skills:<br/>
An independent and structured way of working.
<br/> A high willingness to familiarize yourself with new topics
</p>
<p>
Hard Skills:<br/>
Python | Django | Flask | OpenCV | Tensorflow | Multithreading | MySQL | MongoDB | Git | SVN
</p>
<code>
n = 5;<br>
s = 6;<br>
z = s * n;
</code>
</div>
<div id = "SEO_Tools" class="main-section">
<h4>
SEO Tools.
</h4>
<p>
Reverse Image search | Word Counter | Plagiarsim Checker | and more...
</p>
<p>
Reverse Image search | Word Counter | Plagiarsim Checker | and more...
</p>
<code>
n = 5;<br>
s = 6;<br>
z = s + n;
</code>
</div>
</div>
</body>
</html>