-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
952 lines (927 loc) · 37.3 KB
/
About.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
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<title>About</title>
</head>
<body>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">Android Corp.</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="./webapp.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">About</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Branch-Corporations
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li>
<a
class="dropdown-item"
href="https://cyberpunk.fandom.com/wiki/Arasaka"
target="blank"
>Arasaka Corporations</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://cosmos-pharm.com/"
target="blank"
>Cosmos Ltd.</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://www.corporatenomads.com/"
>Nomad Corporations.</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://gta.fandom.com/wiki/Merryweather_Security"
target="blank"
>Mc-Weather Security Services</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://watchdogs.fandom.com/wiki/Blume_Corporation"
target="blank"
>Blume Pvt. Ltd</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://invade.co/"
target="blank"
>Invade Inc.</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://watchdogs.fandom.com/wiki/DedSec"
target="blank"
>Dead-Sec
</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
</ul>
<form class="d-flex">
<input
class="form-control me-2"
type="search"
placeholder="Search"
aria-label="Search"
/>
<button class="btn btn-success" type="submit">Search</button>
<div class="container">
<a
class="btn btn-success"
data-bs-toggle="modal"
data-bs-target="#signinModal"
>
SignIn
</a>
<a
class="btn btn-success"
data-bs-toggle="modal"
data-bs-target="#signupModal"
>
SignUp
</a>
</div>
</form>
</div>
</div>
</nav>
<!-- SignIn Modal -->
<div
class="modal fade"
id="signinModal"
tabindex="-1"
aria-labelledby="signinModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="signinModalLabel">Sign-In</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<div class="modal-body">
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label"
>Email address</label
>
<input
type="email"
class="form-control"
id="exampleFormControlInput1"
placeholder="[email protected]"
/>
</div>
<div class="mb-3 row">
<label for="inputPassword" class="col-sm-2 col-form-label"
>Password</label
>
<div class="col-sm-10">
<input
type="password"
class="form-control"
id="inputPassword"
/>
</div>
</div>
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
<button type="button" class="btn btn-primary">Submit</button>
</div>
</div>
</div>
</div>
</div>
<!-- Sign-Up Modal -->
<div
class="modal fade"
id="signupModal"
tabindex="-1"
aria-labelledby="signupModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="signupModalLabel">Sign Up</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label"
>Name</label
>
<input
type="text"
class="form-control"
id="exampleFormControlInput1"
placeholder="First-Name Last-Name"
/>
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label"
>Email address</label
>
<input
type="email"
class="form-control"
id="exampleFormControlInput1"
placeholder="[email protected]"
/>
</div>
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label"
>Password</label
>
<input
type="password"
class="form-control"
id="exampleFormControlInput1"
placeholder="********"
/>
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label"
>Confirm Password</label
>
<input
type="password"
class="form-control"
id="exampleFormControlInput1"
placeholder="********"
/>
<label for="exampleFormControlInput1" class="form-label"
>Phone Number</label
>
<input
type="number"
class="form-control"
id="exampleFormControlInput1"
placeholder="91-00000000"
/>
</div>
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
<button type="button" class="btn btn-primary">Submit</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container my-4">
<div class="card mb-3" style="max-width: 540px mx-50">
<div class="row g-0">
<div class="col-md-4">
<img
src="./android.jpeg"
class="img-fluid rounded-start"
alt="..."
/>
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title btn btn-outline-success">
Android Corporations
</h5>
<p class="card-text">
Android is developed by a consortium of developers known as the
Open Handset Alliance and commercially sponsored by Google. It
was unveiled in November 2007, with the first commercial Android
device, the HTC Dream, being launched in September 2008.
</p>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Suscipit quod est exercitationem harum possimus facere quaerat
sunt. Ducimus, at repellat?
</p>
<a
href="#"
class="text-success"
data-bs-toggle="modal"
data-bs-target="#androidModal"
>Continue Reading</a
>
</div>
</div>
</div>
</div>
</div>
<!--Android Modal -->
<div
class="modal fade"
id="androidModal"
tabindex="-1"
aria-labelledby="androidModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="androidModalLabel text-success">
Android Corporations
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<img
src="./android.jpeg"
height="200"
class="rounded mx-auto d-block"
alt="..."
/>
<p class="my-3">
Android Inc. was founded in Palo Alto, California, in October 2003
by Andy Rubin, Rich Miner, Nick Sears, and Chris White.[18][19]
Rubin described the Android project as having "tremendous
potential in developing smarter mobile devices that are more aware
of its owner's location and preferences".[19] The early intentions
of the company were to develop an advanced operating system for
digital cameras, and this was the basis of its pitch to investors
in April 2004.[20] The company then decided that the market for
cameras was not large enough for its goals, and five months later
it had diverted its efforts and was pitching Android as a handset
operating system that would rival Symbian and Microsoft Windows
Mobile.[20][21]
</p>
<p>
In 2005, Rubin tried to negotiate deals with Samsung[24] and
HTC.[25] Shortly afterwards, Google acquired the company in July
of that year for at least $50 million;[19][26] this was Google's
"best deal ever" according to Google's then-vice president of
corporate development, David Lawee, in 2010.[24] Android's key
employees, including Rubin, Miner, Sears, and White, joined Google
as part of the acquisition.[19] Not much was known about the
secretive Android Inc. at the time, with the company having
provided few details other than that it was making software for
mobile phones.[19] At Google, the team led by Rubin developed a
mobile device platform powered by the Linux kernel. Google
marketed the platform to handset makers and carriers on the
promise of providing a flexible, upgradeable system.[27] Google
had "lined up a series of hardware components and software
partners and signaled to carriers that it was open to various
degrees of cooperation".
</p>
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
</div>
</div>
</div>
</div>
<div class="container my-3">
<div class="card mb-3" style="max-width: 540px mx-50">
<div class="row g-0">
<div class="col-md-4">
<img
src="./arasaka-2.jpeg"
class="img-fluid rounded-start"
alt="..."
/>
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title btn btn-outline-danger">
Arasaka Corporations
</h5>
<p class="card-text">
The Arasaka Corporation is a powerful organization that towers
over the world of Cyberpunk 2077. They are extremely influential
in Night City, and their reach goes way beyond the city's
borders. They have headquarters throughout the world, from Tokyo
to the United States. They even have their own space station.
</p>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Suscipit quod est exercitationem harum possimus facere quaerat
sunt. Ducimus, at repellat?
</p>
<a
href="#"
class="text-success"
data-bs-toggle="modal"
data-bs-target="#arasakaModal"
>Continue Reading</a
>
</div>
</div>
</div>
</div>
</div>
<!--Arasaka Modal -->
<div
class="modal fade"
id="arasakaModal"
tabindex="-1"
aria-labelledby="arasakaModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="arasakaModalLabel text-success">
Arasaka Corporations
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<img
src="./arasaka-2.jpeg"
height="200"
class="rounded mx-auto d-block"
alt="..."
/>
<p class="my-3">
Cyberpunk 2077 is played in a first-person perspective as V,[3] a
mercenary whose voice,[4] face, hairstyles, body type and
modifications, background, and clothing are customisable. Stat
categories—Body, Intelligence, Reflexes, Technical, and Cool—are
influenced by the character classes that players assume, which are
NetRunner (hacking), Techie (machinery), and Solo (combat). V must
consult a "ripperdoc" to upgrade and purchase cyberware implants;
black markets offer military-grade abilities.[5] The rarity of any
given equipment is shown by a coloured tier system.[6] V can take
cover, aim, run, jump, double jump, and slide.[7][8] Melee strikes
can be dealt with close-combat weapons.[9][10] There are three
types of ranged weapons, all of which can be customised and
modified—Power (standard), Tech (which penetrate walls and
enemies), and Smart (with homing bullets).[11][12] Ranged weapons
are equipped to ricochet bullets in a target's direction and slow
them down in bullet time. Four types of damage can be inflicted
and resisted—Physical, Thermal, EMP, and Chemical.[13][14][15]
Weapon use increases accuracy and reloading speed, which are
manifested in character animations.[16] Gunsmiths repair and
upgrade weapons.[9] The game can be completed without killing
anyone,[17] with non-lethal options for weapons and cyberware.[18]
</p>
<p>
Night City is an American megacity in the Free State of North
California, controlled by corporations and unassailed by the laws
of both country and state. It sees conflict from rampant gang wars
and its ruling entities contending for dominance. The city is
reliant on robotics for everyday aspects like waste collection,
maintenance, and public transportation.[31][32] Its visual
identity is derived from the four eras it underwent—austere
Entropism, colourful Kitsch, imposing Neo-Militarism, and opulent
Neo-Kitsch.[33] Homelessness abounds but does not preclude
cybernetic modification for the poor, giving rise to cosmetic
addiction and consequent violence. These threats are dealt with by
the armed force known as Psycho Squad.[34][35] Trauma Team can be
employed for rapid medical services.[36] Because of the constant
threat of physical harm, all citizens are allowed to openly carry
firearms in public.[37]
</p>
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
</div>
</div>
</div>
</div>
<div class="container my-3">
<div class="card mb-3" style="max-width: 540px mx-50">
<div class="row g-0">
<div class="col-md-4">
<img
src="./Blume-2.jpeg"
class="img-fluid rounded-start"
alt="..."
/>
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title btn btn-outline-primary">Blume Inc.</h5>
<p class="card-text">
Blume Corporation is a technology company that specializes in
communications technologies, information technologies as well as
security technologies. It is the company that developed and owns
CTOS as well as its iterations, and is responsible for their
operation, maintenance and advancement. Through CTOS as well as
its iterations, Blume Corporation has a borderline monopolistic
power on digital information systems across the globe, as well
as its subsidiaries and utilities
</p>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Suscipit quod est exercitationem harum possimus facere quaerat
sunt. Ducimus, at repellat?
</p>
<a
href="#"
class="text-success"
data-bs-toggle="modal"
data-bs-target="#blumeModal"
>Continue Reading</a
>
</div>
</div>
</div>
</div>
</div>
<!--Blume Modal -->
<div
class="modal fade"
id="blumeModal"
tabindex="-1"
aria-labelledby="blumeModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="blumeModalLabel text-success">
Blume Inc.
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<img
src="./Blume-2.jpeg"
height="200"
class="rounded mx-auto d-block"
alt="..."
/>
<p class="my-3">
Blume Corporation is a technology company that specializes in
communications technologies, information technologies as well as
security technologies. It is the company that developed and owns
CTOS as well as its iterations, and is responsible for their
operation, maintenance and advancement. Through CTOS as well as
its iterations, Blume Corporation has a borderline monopolistic
power on digital information systems across the globe, as well as
its subsidiaries and utilities.
</p>
<p>
Self-described as the "world's foremost innovator of high-tech,
high-performance communications and security technology",[1] Blume
Corporation specializes in everything from wireless phone
operating systems, home computers, to digital imaging processors,
and linked-by-network security systems. They take great pride in
the fact that they helped create most of the markets they now
dominate. Blume stands poised to reshape the way people think
about Information Security Architecture (ISA).
</p>
<p>
Blume had its own security contractors in Watch Dogs to protect
the company's major interests like CTOS Control Centers, Blume
property, etc. These security members could be identified with
CTOS signs on their gray uniforms. They were notorious for various
criminal records of its members. In Watch Dogs 2, Blume hires
Umeni Security Corps to provide security to their facilities. It
is unknown if this was only for the Bay Area or if Umeni Security
Corps were also contracted to replace Blume facilities in Chicago
after the events of Watch Dogs. Blume made many sketchy deals with
organizations by giving them access to CTOS data and related
technology like the Bellwether system, in exchange for funding and
information. This in turn created one of the largest corrupt
corporate monopolies that even included U.S. government agencies
such as the FBI.
</p>
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
</div>
</div>
</div>
</div>
<div class="container my-3">
<div class="card mb-3" style="max-width: 540px mx-50">
<div class="row g-0">
<div class="col-md-4">
<img
src="./dedsec-2.jpeg"
class="img-fluid rounded-start"
alt="..."
/>
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title btn btn-outline-dark">
Ded-Sec Hacker Group
</h5>
<p class="card-text">
DedSec is a notorious hacking collective that operates in cities
all around the world. The group itself is opposed to the
implementation and use of the CTOS and has the objective of
proving that the system is flawed and unnecessary. The group's
members hack into various CTOS systems for destructive purposes
in order to highlight its weaknesses and vulnerabilities.
</p>
<p>
DedSec is a secret hacking collective featured in the Watch Dogs
series. They have a worldwide presence and millions of
followers, with their goal being to expose the corruption in the
common world, including large corporations.
</p>
<a
href="#"
class="text-success"
data-bs-toggle="modal"
data-bs-target="#dedsecModal"
>Continue Reading</a
>
</div>
</div>
</div>
</div>
</div>
<!--dedsec Modal -->
<div
class="modal fade"
id="dedsecModal"
tabindex="-1"
aria-labelledby="dedsecModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="dedsecModalLabel text-success">
Ded-Sec Hacker Groups
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<img
src="./dedsec-2.jpeg"
height="200"
class="rounded mx-auto d-block"
alt="..."
/>
<p class="my-3">
Watch Dogs 2 (stylized as WATCH_DOGS 2) is a 2016 action-adventure
game developed by Ubisoft Montreal and published by Ubisoft. It is
the sequel to 2014's Watch Dogs and the second installment in the
Watch Dogs series. It was released for the PlayStation 4, Xbox One
and Microsoft Windows in November 2016, and Stadia in December
2020. Set within a fictionalized version of the San Francisco Bay
Area, the game is played from a third-person perspective and its
open world is navigated on-foot or by vehicle. Players control
Marcus Holloway, a hacker who works with the hacking group DedSec
to take down the city's advanced surveillance system known as
ctOS. There are multiple ways to complete missions, and each
successful assignment increases the follower count of DedSec.
Cooperative multiplayer allows for competitive one-on-one combat
and connecting with other players to neutralize a player who is
causing havoc.
</p>
<p>
In 2005, Rubin tried to negotiate deals with Samsung[24] and
Similar to its predecessor, Watch Dogs 2 is an action-adventure
game with stealth elements[2] and played from a third-person
perspective as Marcus Holloway, a young hacker. The game features
an open world set in a fictionalized version of the San Francisco
Bay Area,[3][4] an area more than twice as large as the
Chicagoland setting from Watch Dogs.[5] It consists of four
different areas: San Francisco, Oakland, Marin, and Silicon
Valley.[6] Players can navigate the game's world on-foot or by the
various vehicles featured in the game, such as cars, trucks,
buses, cable cars, motorcycles, quad bikes, and boats.[7] The
driving mechanic was overhauled and designed to be more
accessible.[8] The player can shoot their weapons while
driving.[9] Marcus also has improved acrobatic skills, and the
ability to parkour around the city.[10] The player can use
different methods to approach the game's missions, choosing
between the aggressive approach, in which they defeat enemies with
guns which are made with a 3D printer; explosives, like mines; or
Marcus' own melee weapon, a billiard ball attached to a bungee
cord. Alternatively, the player can use the stealth approach, in
which they can evade enemies or paralyze them temporarily with
Marcus' taser.[4][10] Watch Dogs 2, like its predecessor, places a
particular emphasis on using environmental apparatus and the
terrain to Marcus' advantage. For example, a player may hack an
A/C unit to produce an electric shock when an enemy nears it.
Marcus may also employ his own modular taser devices and
explosives to use tactically against enemies.[11] When law
enforcement witnesses the player committing a crime, or is alerted
by a non-player character (NPC), police officers will attempt to
arrest the player.[12] The game upgrades system is a returning
feature, with items being divided into three categories: Ghost,
Aggressor, and Trickster. Upgrades can be customized according to
playstyles.[9]
</p>
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
</div>
</div>
</div>
</div>
<div class="container my-3">
<div class="card mb-3" style="max-width: 540px mx-50">
<div class="row g-0">
<div class="col-md-4">
<img
src="./Invade-2.jpeg"
height="200"
class="img-fluid rounded-start"
alt="..."
/>
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title btn btn-outline-warning">Invade Inc.</h5>
<p class="card-text">
Invade revolves around retail-centric activations and have 4
assets in-house to transform retail spaces in the evolving
landscape. The 4 assets are Fleawhere, Artbox Singapore, MOX and
Invade.co We create spaces of potential and make them accessible
to people while remaining personal and distinctly human in
scale. Through these spaces, we offer opportunity and
possibility to better quality of lives. In a transient and
mass-produced world, we seek to create spaces of potential that
deliver uniquely immersive experiences of real value and
authenticity so our stakeholders leave us feeling engaged and
fulfilled.
</p>
<p>
DedSec is a secret hacking collective featured in the Watch Dogs
series. They have a worldwide presence and millions of
followers, with their goal being to expose the corruption in the
common world, including large corporations.
</p>
<a
href="#"
class="text-success"
data-bs-toggle="modal"
data-bs-target="#invadeModal"
>Continue Reading</a
>
</div>
</div>
</div>
</div>
</div>
<!--Android Modal -->
<div
class="modal fade"
id="invadeModal"
tabindex="-1"
aria-labelledby="invadeModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-scrollable">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="invadeModalLabel text-success">
Android Corporations
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<img
src="./Invade-2.jpeg"
height="200"
class="rounded mx-auto d-block"
alt="..."
/>
<p class="my-3">
Invade Inc. is an American multinational technology company that
specializes in consumer electronics, computer software and online
services. Apple is the world's largest technology company by
revenue (totaling $274.5 billion in 2020) and, since January 2021,
the world's most valuable company. As of 2021, Apple is the
world's fourth-largest PC vendor by unit sales[9] and
fourth-largest smartphone manufacturer.[10][11] It is one of the
Big Five American information technology companies, along with
Amazon, Google (Alphabet), Facebook (Meta) and
Microsoft.[12][13][14] Invade was founded by Steve Jobs, Steve
Wozniak and Ronald Wayne in 1976 to develop and sell Wozniak's
Apple I personal computer. It was incorporated by Jobs and Wozniak
as Apple Computer, Inc. in 1977 and sales of its computers,
including the Apple II, grew quickly. It went public in 1980 to
instant financial success. Over the next few years, Apple shipped
new computers featuring innovative graphical user interfaces, such
as the original Macintosh, announced with the critically acclaimed
advertisement "1984". The high price of its products and limited
application library caused problems, as did power struggles
between executives. In 1985, Wozniak departed Apple amicably,[15]
while Jobs resigned to found NeXT, taking some Apple co-workers
with him.[16]
</p>
<p>
Invade Computer Company was founded on April 1, 1976, by Steve
Jobs, Steve Wozniak, and Ronald Wayne as a business
partnership.[22][25] The company's first product is the Apple I, a
computer designed and hand-built entirely by Wozniak.[26][27] To
finance its creation, Jobs sold his only motorized means of
transportation, a VW Microbus, for a few hundred dollars, and
Wozniak sold his HP-65 calculator for US$500 (equivalent to $2,274
in 2020).[28] Wozniak debuted the first prototype at the Homebrew
Computer Club in July 1976.[29][30] The Apple I was sold as a
motherboard with CPU, RAM, and basic textual-video chips—a base
kit concept which would not yet be marketed as a complete personal
computer.[31] It went on sale soon after debut for US$666.66
(equivalent to $3,032 in 2020).[32][33][34][35][36]: 180 Wozniak
later said he was unaware of the coincidental mark of the beast in
the number 666, and that he came up with the price because he
liked "repeating digits".[37]
</p>
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
</div>
</div>
</div>
</div>
<div class="container">
<footer class="py-3 my-10">
<ul class="nav justify-content-center border-bottom pb-3 mb-3">
<li class="nav-item">
<a href="#" class="nav-link px-2 text-muted">Home</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link px-2 text-muted">Features</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link px-2 text-muted">Pricing</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link px-2 text-muted">FAQs</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link px-2 text-muted">About</a>
</li>
</ul>
<p class="text-center text-muted">© 2021 Company, Inc</p>
</footer>
</div>
</body>
</html>