-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
640 lines (598 loc) · 30.6 KB
/
index.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Stack Overflow - Where Developers Learn, Share, & Build Careers</title>
<link rel="shortcut icon" href="https://cdn.sstatic.net/Sites/stackoverflow/Img/favicon.ico?v=ec617d715196">
<link rel="apple-touch-icon" href="https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon.png?v=c78bd457575a">
<link rel="image_src" href="https://cdn.sstatic.net/Sites/stackoverflow/Img/apple-touch-icon.png?v=c78bd457575a">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" />
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<header>
<div class="nav-container">
<nav>
<div class="nav-brand">
<div class="hamburger-menu-container">
<div class="hamburger-menu">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<div class="nav-dropdown-menu">
<a href="#" class="current-link">Home</a>
<h5>Public</h5>
<ul class="nav-ul">
<li class="nav-item">
<i class="fas fa-globe-europe"></i>
<a href="#" class="nav-link">Stack Overflow</a>
</li>
<li class="nav-item"><a href="#" class="nav-link">Tags</a></li>
<li class="nav-item"><a href="#" class="nav-link">Users</a></li>
</ul>
<h5>Find a Job</h5>
<ul class="nav-ul">
<li class="nav-item"><a href="#" class="nav-link">Jobs</a></li>
<li class="nav-item"><a href="#" class="nav-link">Companies</a></li>
</ul>
<h5>Teams <a href="#" >What's this ?</a></h5>
<a href="#" class="nav-link">
<i class="fas fa-briefcase"></i>
<span>Free 30 Day Trial</span>
</a>
</div>
</div>
<a href="#" class="nav-icon">
<i class="fab fa-stack-overflow"></i>
<div class="nav-icon-text">stack <span class="nav-bold-text">overflow</span>
</div>
</a>
</div>
<div class="nav-base-links">
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">For Teams</a></li>
</ul>
</div>
<div class="nav-search">
<div class="search-container">
<i class="fas fa-search"></i>
<input type="text" id="" placeholder="Search...">
</div>
<div class="search-hints">
<div class="search-arrow-up"></div>
<div class="search-hint-body">
<div class="hints-grid-column">
<div class="hint-text"><span>[tag] </span> search within a tag</div>
<div class="hint-text"><span>user:1234 </span> search by author</div>
<div class="hint-text"><span>"words here"</span> exact phrase </div>
</div>
<div class="hints-grid-column">
<div class="hint-text"><span>answers:0</span> unanswered questions</div>
<div class="hint-text"><span> score:3 </span> posts with a 3+ score</div>
<div class="hint-text"><span>isaccepted:yes </span> search within status</div>
</div>
</div>
<div class="search-hint-footer">
<a href="#" class="btn">Ask a question</a>
<a href="#" class="search-help">Search help</a>
</div>
</div>
</div>
<div class="nav-right-buttons">
<div class="search-btn">
<i class="fas fa-search"></i>
</div>
<a href="#" class="btn btn-login">Log in</a>
<a href="#" class="btn btn-register">Sign up</a>
</div>
</nav>
</div>
</header>
<section class="hero">
<div class="hero-content">
<h1 class="hero-title">We <span><3 </span> people who code</h1>
<p class="hero-paragraph">
We build products that empower developers and connect them to solutions that enable productivity, growth, and discovery.
</p>
<div class="hero-options">
<a href="#" class="btn btn-developers">For developers</a>
<a href="#" class="btn btn-businesses">For businesses</a>
</div>
</div>
</section>
<section class="for-developers">
<div class="container">
<div class="section-head">
<h2 class="section-title">For developers, by developers
</h2>
<div class="section-line"></div>
<p class="section-description">Stack Overflow is an <a href="#">open community</a> for anyone that codes. We help you get answers to your toughest coding questions, share knowledge with your coworkers in private, and find your next dream job.
</p>
</div>
<div class="options">
<div class="option">
<div class="option-icon">
<img src="https://cdn.sstatic.net/Img/home/public-qa.svg?v=d82acaa7df9f" alt="Public Q & A">
</div>
<div class="option-title">
Public Q&A
</div>
<div class="option-description">
Get answers to more than 16.5 million questions and give back by sharing your knowledge with others.
<a href="#">Sign up</a> for an account.
</div>
<div class="option-button">
<a href="#" class="option-link btn btn-dark-blue">
Browse questions
</a>
</div>
</div>
<div class="option">
<div class="option-icon">
<img src="https://cdn.sstatic.net/Img/home/private-qa.svg?v=2c1de180b6d7" alt="Private Q & A">
</div>
<div class="option-title">
Public Q&A
</div>
<div class="option-description">
Level up with Stack Overflow while you work. Share knowledge privately with your coworkers using our flagship Q&A engine.
</div>
<div class="option-button">
<a href="#" class="option-link btn btn-orange">
Try for free
</a>
</div>
</div>
<div class="option">
<div class="option-icon">
<img src="https://cdn.sstatic.net/Img/home/jobs.svg?v=931d6c0863ee" alt="Browse jobs
">
</div>
<div class="option-title">
Public Q&A
</div>
<div class="option-description">
Find the right job through high quality listings and search for roles based on title, technology stack, salary, location, and more.
</div>
<div class="option-button">
<a href="#" class="option-link btn btn-dark-blue">
Find a job
</a>
</div>
</div>
</div>
</div>
</section>
<section class="for-businesses">
<div class="container">
<div class="section-head">
<h2 class="section-title">For businesses, by developers</h2>
<div class="section-line"></div>
<p class="section-description">Our mission is to help developers write the script of the future. This means helping you find and hire skilled developers for your business and providing them the tools they need to share knowledge and work effectively.</p>
</div>
<div class="options">
<div class="option">
<div class="option-icon">
<img src="https://cdn.sstatic.net/Img/home/private-questions.svg?v=a4f1cfb08f7e" alt="Private Q&A">
</div>
<div class="option-description">
Quickly find and share internal knowledge with <a href="#" class="option-link">Private Q&A</a>
</div>
</div>
<div class="option">
<div class="option-icon">
<img src="https://cdn.sstatic.net/Img/home/find-candidate.svg?v=9099aa106ad3" alt="Talent solutions">
</div>
<div class="option-description">
Find the perfect candidate for your growing technical team with <a href="#" class="option-link">Talent solutions</a>
</div>
</div>
<div class="option">
<div class="option-icon">
<img src="https://cdn.sstatic.net/Img/home/accelerate.svg?v=9d4c2786ff02" alt=" Advertising platform">
</div>
<div class="option-description">
Accelerate the discovery of your products or services through our <a href="#" class="option-link">Advertising platform</a>
</div>
</div>
</div>
</div>
</section>
<section class="teams">
<div class="container">
<div class="teams-head">
<h2 class="teams-title">Unlock siloed knowledge with Stack Overflow for Teams
</h2>
<p class="teams-description">Wikis, chat messages, or formal documentation for knowledge management aren’t effective. Our question and answer format is a proven approach for accessing the right information in less time.
</p>
<div class="teams-details">
<a href="#" class="btn btn-orange">Learn More</a>
</div>
</div>
<div class="teams-plan">
<div class="card card-basic">
<div class="card-header">
<h2 class="plan-type">Basic</h2>
<p class="plan-description">Private knowledge base for teams</p>
</div>
<div class="card-body">
<div class="plan-price">
<div class="price">$6 USD</div>
<span class="per">per teammate / month</span>
</div>
<div class="plan-features">
<div class="plan-feature">
<i class="far fa-calendar-alt"></i>
<span class="plan-text">Free 30 day trial</span>
</div>
<div class="plan-feature">
<i class="fab fa-keycdn"></i>
<span class="plan-text">Your own private space hosted on stackoverflow.com</span>
</div>
<div class="plan-feature">
<i class="fas fa-archive"></i>
<span class="plan-text">Fully searchable archive</span>
</div>
</div>
</div>
<div class="card-footer">
<a href="#" class="btn btn-card">Get started for free</a>
</div>
</div>
<div class="card card-business">
<div class="card-most-used">
<span>MOST USED</span>
<i class="fas fa-city"></i>
</div>
<div class="card-header">
<h2 class="plan-type">Business</h2>
<p class="plan-description">Private knowledge base with SSO and premium features</p>
</div>
<div class="card-body">
<div class="plan-price">
<div class="price">$12 USD
</div>
<span class="per">per teammate / month</span>
</div>
<div class="plan-features">
<div class="plan-feature">
<i class="fas fa-key"></i>
<span class="plan-text">Single sign-on (SSO) with SAML</span>
</div>
<div class="plan-feature">
<i class="far fa-chart-bar"></i>
<span class="plan-text">Reporting and analytics</span>
</div>
<div class="plan-feature">
<i class="fas fa-plus-square"></i>
<span class="plan-text">Priority customer support</span>
</div>
<div class="plan-feature">
<i class="fas fa-star"></i>
<span class="plan-text">99.5% uptime
</span>
</div>
<div class="plan-feature">
<i class="fas fa-plus"></i>
<span class="plan-text">All the features of Basic tier</span>
</div>
</div>
</div>
<div class="card-footer">
<a href="#" class="btn btn-card">Get started</a>
</div>
</div>
<div class="card card-enterprise">
<div class="card-header">
<h2 class="plan-type">Enterprise</h2>
<p class="plan-description">Standalone knowledge base with enhanced security and flexible hosting
</p>
</div>
<div class="card-body">
<div class="plan-price">
<div class="price">Custom pricing </div>
<span class="per">Let’s talk about what you need</span>
</div>
<div class="plan-features">
<div class="plan-feature">
<i class="fas fa-key"></i>
<span class="plan-text">Single sign-on with AD or SAML</span>
</div>
<div class="plan-feature">
<i class="fas fa-mountain"></i>
<span class="plan-text">Host on your cloud or servers – or our private managed cloud</span>
</div>
<div class="plan-feature">
<i class="fas fa-code"></i>
<span class="plan-text">Robust read and write API</span>
</div>
<div class="plan-feature">
<i class="fas fa-user"></i>
<span class="plan-text">Your own customer success and community building representative</span>
</div>
<div class="plan-feature">
<i class="fas fa-star"></i>
<span class="plan-text">99.5% uptime SLA and priority support</span>
</div>
</div>
</div>
<div class="card-footer">
<a href="#" class="btn btn-card">Request a demo</a>
</div>
</div>
</div>
<div class="teams-footer">
<a class="teams-footer-item">
<img src="https://cdn.sstatic.net/Img/product/teams/endorsements/g2.svg?v=670bf9279910" alt="">
<div class="teams-footer-text"><strong>Leader</strong> <span>Summer 2020</span> </div>
</a>
<a class="teams-footer-item">
<img src="https://cdn.sstatic.net/Img/product/teams/endorsements/g2.svg?v=670bf9279910" alt="">
<div class="teams-footer-text"><strong>Users Love Us</strong> </div>
</a>
<a class="teams-footer-item">
<img src="https://cdn.sstatic.net/Img/product/teams/endorsements/fastco.svg?v=5ebc802a76c7" alt="">
<div class="teams-footer-text"><strong>Most Innovative Companies</strong> <span>2019</span> </div>
</a>
</div>
</div>
</section>
<section class="hire">
<div class="container">
<div class="hire-content">
<div class="hire-item">
<img src="https://cdn.sstatic.net/Img/home/find-candidate.svg?v=9099aa106ad3" alt="" class="hire-icon">
<h4 class="hire-item-title">Hire your technical talent</h4>
<p class="hire-item-description">We help expand your technical hiring strategy to promote your employer brand and highlight relevant open roles to our community of over 100 million developers and technologists.</p>
<a href="#" class="btn btn-orange">Stack Overflow Talent</a>
</div>
<div class="hire-item">
<img src="https://cdn.sstatic.net/Img/home/accelerate.svg?v=9d4c2786ff02" alt="" class="hire-icon">
<h4 class="hire-item-title">Reach developers worldwide
</h4>
<p class="hire-item-description">Use the world’s largest resource for people who code to help you increase awareness and showcase your product or service across Stack Overflow’s network of Q&A sites. </p>
<a href="#" class="btn btn-orange">Stack Overflow Advertising</a>
</div>
</div>
</div>
</section>
<section class="questions">
<div class="container">
<div class="questions-content">
<div class="questions-header">
<h3 class="question-title">Questions are everywhere, answers are on Stack Overflow</h3>
</div>
<div class="questions-body">
<div class="questions-body-items">
<div class="questions-body-item" data-id="0">
<img src="https://cdn.sstatic.net/Img/home/ask-a-question.svg?v=f4f2050b0297" alt="" class="question-item-icon">
<div class="question-item-text">Ask a question</div>
<div class="question-arrow-right"></div>
</div>
<div class="questions-body-item" data-id="1">
<img src="https://cdn.sstatic.net/Img/home/votes.svg?v=748a8f48a8e2" alt="" class="question-item-icon">
<div class="question-item-text">Vote on everything</div>
<div class="question-arrow-right"></div>
</div >
<div class="questions-body-item" data-id="2">
<img src="https://cdn.sstatic.net/Img/home/answer.svg?v=4cd8048a676c" alt="" class="question-item-icon">
<div class="question-item-text">Answer questions</div>
<div class="question-arrow-right"></div>
</div>
</div>
<div class="questions-body-item-content">
<img src="https://cdn.sstatic.net/Img/home/illo-feats-vote.svg?v=9d2eb0efdc17" alt="" class="question-item-content-img">
<h4 class="question-item-content-text">
Accept the answer which solved your problem to let others benefit from the valuable information.
</h4>
<a href="#" class="btn btn-orange question-item-content-btn">Create an account</a>
</div>
<div class="questions-body-items">
<div class="questions-body-item" data-id="3">
<img src="https://cdn.sstatic.net/Img/home/tags.svg?v=913379eb09eb" alt="" class="question-item-icon">
<div class="question-item-text">Tag your question</div>
<div class="question-arrow-left"></div>
</div>
<div class="questions-body-item" data-id="4">
<img src="https://cdn.sstatic.net/Img/home/accept.svg?v=27d5be078970" alt="" class="question-item-icon">
<div class="question-item-text">Accept a answer</div>
<div class="question-arrow-left"></div>
</div>
<div class="questions-body-item" data-id="5">
<img src="https://cdn.sstatic.net/Img/home/get-recognized.svg?v=3b339d9aa10c" alt="" class="question-item-icon">
<div class="question-item-text">Get recognized</div>
<div class="question-arrow-left"></div>
</div>
</div>
</div>
<div class="questions-footer">
<h3 class="question-title">Learn and grow with Stack Overflow</h3>
<div class="questions-grid">
<div class="questions-grid-item">
<div class="grid-item-img">
<img src="https://cdn.sstatic.net/Img/home/developer.svg?v=b930de7967a7" alt="">
</div>
<h4 class="grid-item-title">Write the script of the future</h4>
<p class="grid-item-description">Get your coding questions answered to learn, build, and level up whether you’re beginning with
<a href="#">JavaScript</a> or a <a href="#">React</a> professional.
</p>
</div>
<div class="questions-grid-item">
<div class="grid-item-img">
<img src="https://cdn.sstatic.net/Img/home/open-source.svg?v=847b604fd2ab" alt="">
</div>
<h4 class="grid-item-title">Support open source
</h4>
<p class="grid-item-description">Reach users of your project by following tags, answering newcomer questions, and empowering experts in the community.
<a href="#"> Read the curl project creator’s story.</a>
</p>
</div>
<div class="questions-grid-item">
<div class="grid-item-img">
<img src="https://cdn.sstatic.net/Img/home/advocate.svg?v=4b03cfb93502" alt="">
</div>
<h4 class="grid-item-title">Acquire and share knowledge
</h4>
<p class="grid-item-description">Answer questions and <a href="#">gain insights</a> from an audience of developers using your technology on Stack Overflow.
</p>
</div>
<div class="questions-grid-item">
<div class="grid-item-img">
<img src="https://cdn.sstatic.net/Img/home/career-switcher.svg?v=a41416ff19df" alt="" >
</div>
<h4 class="grid-item-title">Find career opportunities
</h4>
<p class="grid-item-description">Create a profile that shows off your expertise and credentials to help you make your next move. Start your
<a href="#">Developer Story</a>.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="jobs">
<div class="container">
<div class="jobs-content">
<h3 class="jobs-title">Looking for a job?</h3>
<div class="jobs-body">
<div class="jobs-items">
<div class="column">
<div class="jobs-item">
<img src="https://cdn.sstatic.net/Img/home/jobs-tech.svg?v=42f011c01763" alt="" class="jobs-item-img">
<p class="jobs-item-description">Browse jobs by technology</p>
</div>
<div class="jobs-item">
<img src="https://cdn.sstatic.net/Img/home/jobs-salary.svg?v=401840ff8931" alt="" class="jobs-item-img">
<p class="jobs-item-description">Browse jobs by salary</p>
</div>
</div>
<div class="column">
<div class="jobs-item">
<img src="https://cdn.sstatic.net/Img/home/jobs-visa.svg?v=1f3acc6dc772" alt="" class="jobs-item-img">
<p class="jobs-item-description">Browse jobs by visa sponsorship</p>
</div>
<div class="jobs-item">
<img src="https://cdn.sstatic.net/Img/home/jobs-remote.svg?v=a4b4d1b5a80c" alt="" class="jobs-item-img">
<p class="jobs-item-description">Browse remote-friendly jobs</p>
</div>
</div>
</div>
<div class="jobs-btn">
<div class="btn btn-orange jobs-btn">View all jobs</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<img src="https://cdn.sstatic.net/Img/home/robot.svg?v=dfa16a330cbd" alt="" class="footer-robot-img">
<div class="container">
<div class="footer-content">
<div class="footer-icon">
<i class="fab fa-stack-overflow"></i>
</div>
<div class="footer-nav">
<div class="footer-nav-col">
<div class="footer-links-title"><a href="#">Stack Overflow</a></div>
<ul class="footer-links">
<li class="footer-link-item"><a href="#" class="footer-link">Questions</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Jobs</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Developer Jobs Directory</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Salary Calculator</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Help</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Mobile</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Disable Responsiveness</a></li>
</ul>
</div>
<div class="footer-nav-col">
<div class="footer-links-title"><a href="#">Products</a></div>
<ul class="footer-links">
<li class="footer-link-item"><a href="#" class="footer-link">Teams</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Talent</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Advertising</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Enterprise</a></li>
</ul>
</div>
<div class="footer-nav-col">
<div class="footer-links-title"><a href="#">Company</a></div>
<ul class="footer-links">
<li class="footer-link-item"><a href="#" class="footer-link">About</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Press</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Work Here</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Legal</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Privacy Policy</a></li>
<li class="footer-link-item"><a href="#" class="footer-link">Contact Us</a></li>
</ul>
</div>
<div class="footer-nav-col">
<div class="footer-links-title"><a href="#">Stack Exchange Network</a></div>
<ul class="footer-links">
<li class="footer-link-item">
<a href="#" class="footer-link">Technology</a>
<div class="footer-arrow-icon">
<i class="fas fa-chevron-right"></i>
</div>
</li>
<li class="footer-link-item">
<a href="#" class="footer-link">Life / Arts</a>
<div class="footer-arrow-icon">
<i class="fas fa-chevron-right"></i>
</div></li>
<li class="footer-link-item">
<a href="#" class="footer-link">Culture / Recreation</a>
<div class="footer-arrow-icon">
<i class="fas fa-chevron-right"></i>
</div>
</li>
<li class="footer-link-item">
<a href="#" class="footer-link">Science</a>
<div class="footer-arrow-icon">
<i class="fas fa-chevron-right"></i>
</div>
</li>
<li class="footer-link-item">
<a href="#" class="footer-link">Other</a>
<div class="footer-arrow-icon">
<i class="fas fa-chevron-right"></i>
</div>
</li>
</ul>
</div>
</div>
<div class="footer-another-links">
<div class="social-media">
<ul>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">Facebook</a>
</li>
<li>
<a href="#">Twitter</a>
</li>
<li>
<a href="#">LinkedIn</a>
</li>
<li>
<a href="#">Instagram</a>
</li>
</ul>
</div>
<div class="copyright">
<p>site design / logo © 2020 Stack Exchange Inc; user contributions licensed under <a href="https://stackoverflow.com/help/licensing">cc by-sa</a>. rev 2020.10.2.37725</p>
</div>
</div>
</div>
</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>