This repository has been archived by the owner on Dec 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (102 loc) · 6.44 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
---
---
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="contact-form.js" async></script>
<script src="console-message.js" async></script>
<title>Software Development Course | Techsmiths | London</title>
{% include analytics.html %}
</head>
<body>
{% include header.html %}
<div class="hero-box">
<picture>
<source media="(orientation: landscape) and (min-width: 961px)" srcset="images/homepage-hero-1920-1280.jpg" />
<source media="(orientation: landscape) and (min-width: 526px)" srcset="images/homepage-hero-960-640.jpg" />
<source media="(orientation: landscape)" srcset="images/homepage-hero-525-350.jpg" />
<source media="(orientation: portrait) and (min-width: 641px)" srcset="images/homepage-hero-1280-1280.jpg" />
<source media="(orientation: portrait) and (min-width: 351px)" srcset="images/homepage-hero-640-640.jpg" />
<source media="(orientation: portrait)" srcset="images/homepage-hero-350-350.jpg" />
<img src="images/homepage-hero-1920-1280.jpg" style="object-position: center 18%;" alt="" /><!-- alt="" because this image is just for decoration -->
</picture>
<div class="tagline-phrase">
<span class="become-a">Become a </span>
<span class="tagline">Software Developer</span>
</div>
<div class="tagline-phrase">
<span class="become-a">Become a </span>
<span class="tagline">Techsmith</span>
</div>
</div>
<div class="button-row float-over-hero-image">
<a href="/application-form" class="button button-black-on-yellow-on-black">Apply Now</a>
</div>
<div class="section black-background">
<p class="medium-width-text white-text">
Techsmiths’ mission is to provide people from all walks of life with the opportunity to become expert Software Developers. Our training bootcamp will help you expand your horizons, learn new skills and enter a new industry.
</p>
<div class="button-row button-row-gap-above">
<a href="/contact" class="button button-yellow-on-black-on-black">Get in touch</a>
<a href="/course" class="button button-black-on-yellow-on-black">More info</a>
</div>
</div>
<div class="section yellow-background checkerboard-grid grid-with-gap grid-picture-first">
<div class="row">
<picture>
<source media="(min-width: 601px)" srcset="images/rita-square-470.jpg" />
<img src="images/rita-letterbox-560-187.jpg" alt="" /><!-- alt="" because this image is just for decoration -->
</picture>
<div class="text white-text black-background">
<h2>Break into tech</h2>
<p>You don’t need to have been coding for years or have studied computer science to be a great software developer. If you love to learn and problem-solve then you could be a great developer too!</p>
<p>If you have gained skills and experience in previous roles, you bring something extra to the table. As a developer, you may have more dimensions than someone who went through a traditional route into coding.</p>
</div>
</div>
<div class="row">
<picture>
<source media="(min-width: 601px)" srcset="images/gareth-square-470.jpg" />
<img src="images/gareth-letterbox-560-187.jpg" alt="" /><!-- alt="" because this image is just for decoration -->
</picture>
<div class="text white-text black-background">
<h2>Be supported</h2>
<p>We know that changing career can be scary but we'll support you throughout the whole process. From learning the skills necessary to be a confident coder, to finding employment after completing the course, we will be there every step of the way.</p>
<p>Every learner has a dedicated trainer responsible for their well-being. They provide stability and continuity and will answer any questions you might have.</p>
</div>
</div>
<div class="button-row button-row-gap-above">
<a href="/apply" class="button button-black-on-yellow-on-yellow">Learn more</a>
</div>
</div>
<div class="section black-background white-text">
<h2>FAQ</h2>
<div class="two-columns">
<div>
<h3>Are there any necessary qualifications?</h3>
<p>No! If you have done some hobby coding in your spare time that might help you find your feet quicker but it definitely isn't necessary.</p>
</div>
<div>
<h3>How long is the course?</h3>
<p>The course consists of 12 weeks of training, followed by an 18-month job placement in industry with the option of making that a permanent role.</p>
</div>
<div>
<h3>Do you need any previous coding experience?</h3>
<p>No! No previous experience is required. We will provide all the training you need to become a confident software developer. </p>
</div>
<div>
<h3>What are the hours and where is it?</h3>
<p> The course is full-time (Mon-Fri, roughly 9:30am-5:30pm). The initial 12-week bootcamp is based in our offices in north London.</p>
</div>
</div>
<div class="button-row button-row-gap-above">
<a href="/course" class="button button-black-on-yellow-on-black">More info</a>
</div>
</div>
{% include our-recent-techsmiths.html %}
{% include companies-weve-worked-with.html %}
{% include get-in-touch.html content="Techsmiths,<br />Unit 110 Highgate Studios,<br />53-79 Highgate Rd,<br />London<br />NW5 1TL, UK" %}
{% include footer.html %}
</body>
</html>