CINXE.COM
Talk to an expert in the United Kingdom, Europe and Israel - Investment NSW
<!doctype html> <html lang="en" class="no-js"> <head> <meta charset="utf-8"> <script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/core.min.js" integrity="sha512-t8vdA86yKUE154D1VlNn78JbDkjv3HxdK/0MJDMBUXUjshuzRgET0ERp/0MAgYS+8YD9YmFwnz6+FWLz1gRZaw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/sha256.min.js" integrity="sha512-fv28nWHTcWfoN3KBd2fs+YWsirQ+L0b/iIRS7HcNDPSAwxy6oSjRrYjQ+OtJoJz0wUKsVcPYgwcZzK04KfHD0A==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script> (function() { let author = '' let date = '' function dataLayerAdd(content) { window.dataLayer = window.dataLayer || []; window.dataLayer.push(content) } function contactLink(link) { if (link.classList.contains('contact-header')) { dataLayerAdd({ 'event': 'ga.contact_us_link_click', 'click_text': link.innerText, 'click_url': link.href }) return true } return false } function mainNavLink(link) { if ( link && link.parentElement && link.parentElement.parentElement && link.parentElement.parentElement.classList.contains('nsw-main-nav__list') ) { const clickText = link.querySelector('span').innerText dataLayerAdd({ 'event': 'ga.menu_navigation', 'click_text': clickText, 'click_url': link.href }) return true } return false } function subNavLink(link) { if ( ( link.parentElement && link.parentElement.parentElement && link.parentElement.parentElement.classList.contains('nsw-main-nav__sub-list') ) || ( link.parentElement && link.parentElement.classList.contains('nsw-main-nav__title') ) ) { const clickText = link.querySelector('span').innerText let menuTitle = '' const menus = document.querySelectorAll('.nsw-main-nav__list>li') const menusArray = [...menus] menusArray.forEach((menu, index) => { if (menu.contains(link)) { const menuElement = menu.querySelector('.nsw-main-nav__list>li>a>span') menuTitle = menuElement.innerText } }) dataLayerAdd({ 'click_url': link.href, 'event': 'ga.sub_menu_navigation', 'click_text': clickText, 'menu_title': menuTitle, 'click_url': link.href }) return true } return false } function breadcrumbLink(link) { if (link.classList.contains('nsw-breadcrumb__link')) { dataLayerAdd({ 'event': 'ga.breadcrumb_link_click', 'click_text': link.innerText, 'click_url': link.href }) return true } return false } function bannerLink(link) { if ( link.parentElement && link.parentElement.classList.contains('nsw-hero-banner__button') ) { dataLayerAdd({ 'event': 'ga.nsw_card_link_click', 'click_text': link.innerText, 'click_url': link.href }) return true } if ( window.location.pathname = '/' && link.classList.contains('link-container') ) { dataLayerAdd({ 'event': 'ga.nsw_card_link_click', 'click_text': link.innerText, 'click_url': link.href }) return true } return false } function subscribeLink(link) { if (link.href.includes('confirmsubscription.com')) { dataLayerAdd({ 'event': 'ga.subscribe_button_click', 'click_text': [...link.childNodes][0].data || link.innerText, 'click_url': link.href }) return true } return false } function fileDownload(link) { const extensions = ['.pdf', '.doc', '.docx', '.mp4', '.mp3', '.exe'] const linkSplit = link.href.split('.') const lastItem = linkSplit[linkSplit.length - 1] if (extensions.includes('.' + lastItem)) { dataLayerAdd({ 'event': 'ga.file_download', 'file_extension': lastItem, 'click_text': link.innerText, 'link_url': link.href, }) return true } return false } function socialLink(link) { const socialUrls = [ 'twitter.com', 'linked.com', 'facebook.com', 'instagram.com', 'x.com' ] let isSocial = false socialUrls.forEach(socialUrl => { if (link.href.includes(socialUrl)) isSocial = true }) if (isSocial) { dataLayerAdd({ 'event': 'ga.social_media_link_click', 'click_text': link.innerText, 'click_url': link.href, }) return true } return false } function podcastLink(link) { if (link.href.includes('/news-and-events/podcasts')) { dataLayerAdd({ 'event': 'ga.podcast_tile_tracking', 'podcast_title': link.innerText, 'click_url': link.href, }) return true } return false } function genericButtonLink(link) { if (link.classList.contains('nsw-button')) { dataLayerAdd({ 'event': 'ga.button_click', 'click_text': link.innerText, 'click_url': link.href, }) return true } return false } function mailtoLink(link) { if (link.href.slice(0,7) === 'mailto:') { dataLayerAdd({ 'event': 'ga.maito_link', 'click_text': link.innerText, 'click_url': link.href }) return true } return false } function externalLink(link) { const url = new URL(link.href) const linkHost = url.host const windowHost = window.location.host if (linkHost !== windowHost) { dataLayerAdd({ 'event': 'ga.external_link_click', 'click_text': link.innerText, 'link_url': link.href }) return true } return false } function genericLink(link) { dataLayerAdd({ 'event': 'ga.link_click', 'click_text': link.innerText, 'click_url': link.href, }) } function linkManager(link) { if (externalLink(link)) return if (mailtoLink(link)) return if (fileDownload(link)) return if (contactLink(link)) return if (mainNavLink(link)) return if (subNavLink(link)) return if (breadcrumbLink(link)) return if (podcastLink(link)) return if (subscribeLink(link)) return if (socialLink(link)) return if (link.parentElement.classList.contains('nsw-hero-banner__button') || link.classList.contains('link-container')) { if (bannerLink(link)) return } if (genericButtonLink(link)) return genericLink(link) } function attachLinkListeners() { const links = document.querySelectorAll('a') links.forEach(link => { link.addEventListener('click', () => { linkManager(link) }) }) } function pageView() { const data = { 'event': 'page_view', 'user_agent': window.navigator.userAgent } if (author !== '') { data['article_author'] = author } if (date !== '') { data['publication_date'] = date } const cookie = document.cookie .split('; ') .map(value => value.split('=')) .find(value => value[0] === '_ga') if (cookie && cookie.length === 2) data['device_id'] = cookie[1] dataLayerAdd(data) } function searchTerm() { const searchForms = document.querySelectorAll('#SearchForm_getSearchForm') const searchFormsArray = [...searchForms] searchFormsArray.forEach((searchForm => { const searchButton = searchForm.querySelector('button') const input = searchForm.querySelector('input') searchForm.addEventListener('submit', (event) => { dataLayerAdd({ 'event': 'ga.site_search_tracking', 'search_term': input.value }) }) })) } const formConfigs = [ { event: 'ga.media_releases_filter', action: '/news-and-events/media-releases/', values: [ { type: 'input', name: 'sorted_by', id: 'MediaHolder_SortBy', }, { type: 'input', name: 'search_term', id: 'filters-keywords', }, { type: 'input', name: 'category', id: 'filters-category', }, { type: 'constant', name: 'click_text', value: 'Apply filters', }, { type: 'constant', name: 'click_url', value: '/news-and-events/media-releases/', }, ] }, { event: 'ga.event_filter', action: '/news-and-events/events/', values: [ { type: 'input', name: 'sorted_by', id: 'MediaHolder_SortBy', }, { type: 'input', name: 'date', id: 'filters-date', }, { type: 'input', name: 'search_term', id: 'filters-keywords', }, { type: 'input', name: 'industry', id: 'filters-industry', }, { type: 'input', name: 'region', id: 'filters-region', }, ] }, { event: 'ga.quote_form_submit', action: '/innovation/sydney-startup-hub/event-space-hire/get-a-quote/element/294/Form', values: [ { type: 'input', name: 'state', id: 'UserForm_Form_294_EditableTextField_62488', }, { type: 'input', name: 'suburb', id: 'UserForm_Form_294_EditableTextField_5bdb3', }, { type: 'hashedInput', name: 'hashed_email', id: 'UserForm_Form_294_EditableTextField_59909', }, { type: 'radio', name: 'company_description', inputIds: [ 'UserForm_Form_294_EditableTextField_2c652_Sydney_Startup_Hub_resident', 'UserForm_Form_294_EditableTextField_2c652_External_business', 'UserForm_Form_294_EditableTextField_2c652_NSW_Government_agency', 'UserForm_Form_294_EditableTextField_2c652_Local_government_agency', ] } ] }, { event: 'ga.request_tour_form_submit', action: '/innovation/sydney-startup-hub/community-workspace/element/1591/Form', values: [ { type: 'hashedInput', name: 'hashed_email', id: 'UserForm_Form_1591_EditableTextField_7fa59', }, { type: 'input', name: 'date', id: 'UserForm_Form_1591_EditableTextField_3166b', }, ] }, { event: 'ga.booking_form_submit', action: '/innovation/sydney-startup-hub/regional-entrepreneurs/book-regional-landing-pad/element/337/Form', values: [ { type: 'hashedInput', name: 'hashed_email', id: 'UserForm_Form_337_EditableTextField_535db', }, { type: 'checkboxGroup', name: 'booking_choice', inputIds: [ 'UserForm_Form_337_EditableTextField_b3afa_Hot_desk', 'UserForm_Form_337_EditableTextField_b3afa_Meeting_room', 'UserForm_Form_337_EditableTextField_b3afa_Conference_room', ], }, { type: 'input', name: 'time', id: 'UserForm_Form_337_EditableTextField_4194c', }, { type: 'input', name: 'suburb', id: 'UserForm_Form_337_EditableTextField_dda3e', }, { type: 'input', name: 'date', id: 'UserForm_Form_337_EditableTextField_a43fb', }, ] }, { event: 'ga.contact_us_form_space', action: '/priority-sectors/defence-and-aerospace/space-program/element/618/Form', values: [ { type: 'hashedInput', name: 'hashed_email', id: 'UserForm_Form_618_EditableTextField_fe679', }, { type: 'input', name: 'country', id: 'UserForm_Form_618_EditableTextField_5aaf7', }, ] }, ] function formHandler(config, form) { const data = { 'event': config.event } form.addEventListener('submit', (event) => { config.values.forEach((value) => { if (value.type === 'input') { data[value.name] = document.getElementById(value.id).value } if (value.type === 'hashedInput') { const elementValue = document.getElementById(value.id) const lowerCaseValue = elementValue.value.toLowerCase() const hashedValue = CryptoJS.SHA256(lowerCaseValue).toString() data[value.name] = hashedValue } if (value.type === 'radio') { let checkedValue = '' value.inputIds.forEach((inputId) => { const element = document.getElementById(inputId) if (element.checked) checkedValue = element.value }) data[value.name] = checkedValue } if (value.type === 'constant') { data[value.name] = value.value } if (value.type === 'checkboxGroup') { let checkedValues = '' value.inputIds.forEach((inputId) => { const element = document.getElementById(inputId) if (!element.checked) return if (checkedValues === '') { checkedValues = element.value return } checkedValues = checkedValues + ' AND ' + element.value }) data[value.name] = checkedValues } }) dataLayerAdd(data) }) } function pageForms() { const forms = document.querySelectorAll('form') forms.forEach((form) => { const action = form.action if (action === '') return const actionUrl = new URL(action) formConfigs.forEach((config) => { if (actionUrl.pathname !== config.action) return formHandler(config, form) }) }) } const remove = { 'event': 'ga.contact_us_link_click', 'industry': '<industry>', 'net_zero_economy': '<net_zero_economy>', 'hashed_email': '<hashed_email>', 'hashed_phone': '<hashed_phone>', 'country': '<country>', 'state': '<state>', 'business_or_organisation': '<business_or_organisation>', 'company_name': '<company_name>', 'size_of_business': '<size_of_business>', 'form_name': '<form_name>', 'indigenous_business': '<indigenous_business>', 'click_text': '<click_text>', 'click_url': '<click_url>' } const externalFormConfigs = [ { forId: '4634172', formName: 'Invest In New South Wales', clickText: 'Submit', url: 'https://investmentnsw.tfaforms.net/api_v2/workflow/processor', values: [ { type: 'input', id: 'tfa_311', name: 'industry', hashed: false }, { type: 'input', id: 'tfa_4', name: 'hashed_email', hashed: true }, { type: 'input', id: 'tfa_5', name: 'hashed_phone', hashed: true }, { type: 'input', id: 'tfa_366', name: 'country', hashed: false }, { type: 'input', id: 'tfa_301', name: 'state', hashed: false }, { type: 'input', id: 'tfa_10', name: 'company_name', hashed: false }, { type: 'input', id: 'tfa_9', name: 'size_of_business', hashed: false }, { type: 'checkbox', id: 'tfa_351', name: 'business_or_organisation', }, { type: 'checkbox', id: 'tfa_354', name: 'indigenous_business', }, ] }, { forId: '4634174', formName: 'Grants and programs', clickText: 'Submit', url: 'https://investmentnsw.tfaforms.net/api_v2/workflow/processor', values: [ { type: 'input', id: 'tfa_311', name: 'industry', hashed: false }, { type: 'input', id: 'tfa_4', name: 'hashed_email', hashed: true }, { type: 'input', id: 'tfa_5', name: 'hashed_phone', hashed: true }, { type: 'input', id: 'tfa_366', name: 'country', hashed: false }, { type: 'input', id: 'tfa_301', name: 'state', hashed: false }, { type: 'input', id: 'tfa_10', name: 'company_name', hashed: false }, { type: 'input', id: 'tfa_9', name: 'size_of_business', hashed: false }, { type: 'checkbox', id: 'tfa_351', name: 'business_or_organisation', }, { type: 'checkbox', id: 'tfa_354', name: 'indigenous_business', }, ] }, { forId: '4634160', formName: 'We can help', clickText: 'Submit', url: 'https://investmentnsw.tfaforms.net/api_v2/workflow/processor', values: [ { type: 'input', id: 'tfa_4', name: 'hashed_email', hashed: true }, { type: 'input', id: 'tfa_5', name: 'hashed_phone', hashed: true }, ] }, { forId: '4634171', formName: 'Export from New South Wales', clickText: 'Submit', url: 'https://investmentnsw.tfaforms.net/4634171', values: [ { type: 'input', id: 'tfa_311', name: 'industry', hashed: false }, { type: 'input', id: 'tfa_4', name: 'hashed_email', hashed: true }, { type: 'input', id: 'tfa_621', name: 'hashed_phone', hashed: true }, { type: 'input', id: 'tfa_366', name: 'country', hashed: false }, { type: 'input', id: 'tfa_301', name: 'state', hashed: false }, { type: 'input', id: 'tfa_10', name: 'company_name', hashed: false }, { type: 'input', id: 'tfa_9', name: 'size_of_business', hashed: false }, { type: 'checkbox', id: 'tfa_354', name: 'indigenous_business', }, ] }, ] function externalFormHandler(config, messageData) { const data = { 'event': 'ga.contact_us_link_click', 'form_name': config.formName, 'click_text': config.clickText, 'click_url': config.url } config.values.forEach(configValue => { if (configValue.type === 'input') { let messageValue = '' messageData.values.forEach(value => { if (value.id === configValue.id) messageValue = value.value }) if (configValue.hashed) { messageValue = CryptoJS.SHA256(messageValue.toLowerCase()).toString() } data[configValue.name] = messageValue } if (configValue.type === 'checkbox') { let messageValue = '' messageData.values.forEach(value => { if (value.id === configValue.id) messageValue = value.checked }) data[configValue.name] = messageValue + '' } }) dataLayerAdd(data) } function externalForms() { window.addEventListener('message', (message) => { if (!( message.data && message.data.eventType === 'formassembly' && message.data.forId && message.data.values )) return externalFormConfigs.forEach(config => { if (message.data.forId === config.forId) externalFormHandler(config, message.data) }) }) } function podcastTracker() { let show = '' let episode = '' let isPlaying = false window.addEventListener('message', message => { if (!message.origin.includes('embed.acast.com')) return if (!(message.data && message.data.eventName)) return if (!( message.data.eventName === 'postmessage:on:play' || message.data.eventName === 'postmessage:on:seek' || message.data.eventName === 'postmessage:on:pause' )) return if (!isPlaying && message.data.eventName === 'postmessage:on:pause') return if (message.data.eventName === 'postmessage:on:play') { isPlaying = true } if ( message.data.data && message.data.data.show ) { show = message.data.data.show } if ( message.data.data && message.data.data.episode ) { episode = message.data.data.episode } const state = message.data.eventName.slice(15) dataLayerAdd({ 'event': 'ga.podcast_tracking', 'podcast_title': show, 'episode_name': episode, 'podcast_status': state }) }) } function registerEvent() { const event = document.querySelector('.event-template-item') if (!event) return const registerButton = event.querySelector('.event-template-item .nsw-button') if(!registerButton) return const dateElement = event.querySelector('.event-date') const timeElement = event.querySelector('.event-time') const endTimeElement = event.querySelector('.event-time') const organiserElement = event.querySelector('.event-organiser') const locationElement = event.querySelector('.event-location') const data = { 'event': 'ga.register_for_event_button_click', 'click_text': registerButton.innerText, 'click_url': registerButton.href, } if (dateElement) data['event_start_date'] = dateElement.dateTime if (timeElement) data['event_start_time'] = timeElement.dateTime if (endTimeElement) data['event_end_time'] = timeElement.dateTime if (organiserElement) data['event_organiser'] = organiserElement.innerText if (locationElement) data['event_location'] = locationElement.innerText registerButton.addEventListener('click', () => dataLayerAdd(data)) } function youtubeDataLayer(state) { if (!([0,1,2].includes(state.data))) return; let status = ''; if (state.data === 1) status = 'playing'; if (state.data === 2) status = 'paused'; if (state.data === 0) status = 'ended'; const title = state.target.videoTitle; const url = state.target.getVideoUrl(); const duration = state.target.getDuration(); const currentTime = state.target.getCurrentTime(); const percentwatched = Math.round(currentTime / duration * 100); dataLayerAdd({ 'event': 'ga.video_tracking', 'video_status': status, 'video_title': title, 'video_url': url, 'video_percent': percentwatched, 'video_provider': 'YouTube' }) } function videos() { const iframes = [...document.querySelectorAll('iframe')] const videos = iframes.filter((iframe) => { return iframe.src.includes('youtube.com') }) if (videos.length < 1) return videos.forEach((video, index) => { if (video.id == "") { video.id = 'yt-video-' + index } const url = new URL(video.src) url.searchParams.set('enablejsapi', '1') video.src = url.href }) window.onYouTubeIframeAPIReady = function() { videos.forEach((video) => { const player = new YT.Player(video.id, { events: { 'onStateChange': youtubeDataLayer } }); }) } } function accordionButtonWatcher(button) { let active = false const title = [...button.childNodes][0].data || button.innerText const config = { attributes: true, childList: false, subtree: false }; const callback = (mutationList, observer) => { for (const mutation of mutationList) { if (mutation.type !== "attributes") return const activeClass = button.classList.contains('active') if (activeClass !== active) { active = activeClass dataLayerAdd({ 'event': 'ga.accordion_click', 'accordion_title': title, 'accordion_status': active ? 'open' : 'closed' }) } } }; const observer = new MutationObserver(callback); observer.observe(button, config); } function accordionsLoad() { const accordions = document.querySelectorAll('.nsw-accordion__title') accordions.forEach((accordion) => { let buttonAdded = false const config = { attributes: false, childList: true, subtree: false }; const callback = (mutationList, observer) => { for (const mutation of mutationList) { if (mutation.type !== "childList") return const button = accordion.querySelector('.nsw-accordion__button') if (!button || buttonAdded) return buttonAdded = true observer.disconnect() accordionButtonWatcher(button) } }; const observer = new MutationObserver(callback); observer.observe(accordion, config); }) } function fireImmediately() { pageView() } function fireOnReady() { videos() attachLinkListeners() searchTerm() pageForms() externalForms() podcastTracker() registerEvent() accordionsLoad() } window.youtubeDataLayer = youtubeDataLayer fireImmediately() if (document.readyState === 'complete') { fireOnReady(); } else { document.addEventListener("DOMContentLoaded", fireOnReady); } })() </script> <base href="https://www.investment.nsw.gov.au/"><!--[if lte IE 6]></base><![endif]--> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Talk to an expert in the United Kingdom, Europe and Israel - Investment NSW</title> <meta name="description" content="We can help establish or grow your international business in NSW, or to export products from NSW to customers in the UK, Europe and Israel."> <meta property="og:type" content="website" /> <meta property="og:url" content="https://www.investment.nsw.gov.au/international-offices/united-kingdom-europe-and-israel/"> <meta property="og:title" content="Talk to an expert in the United Kingdom, Europe and Israel"> <meta property="og:description" content="We can help establish or grow your international business in NSW, or to export products from NSW to customers in the UK, Europe and Israel."> <meta name="twitter:card" content="summary"> <meta name="twitter:site" content="Investment NSW"> <meta name="twitter:url" content="https://www.investment.nsw.gov.au/international-offices/united-kingdom-europe-and-israel/"> <meta name="twitter:title" content="Talk to an expert in the United Kingdom, Europe and Israel"> <meta name="twitter:description" content="We can help establish or grow your international business in NSW, or to export products from NSW to customers in the UK, Europe and Israel."> <link rel="manifest" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/site.webmanifest.json?m=1681266912"> <link rel="shortcut icon" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/nsw-digital-logos/favicon/favicon-16x16.png?m=1681266912"> <link rel="apple-touch-icon" sizes="180x180" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/nsw-digital-logos/favicon/favicon-180x180.png?m=1681266912"> <link rel="apple-touch-icon" sizes="96x96" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/nsw-digital-logos/favicon/favicon-96x96.png?m=1681266912"> <link rel="apple-touch-icon" sizes="48x48" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/nsw-digital-logos/favicon/favicon-48x48.png?m=1681266912"> <link rel="apple-touch-icon" sizes="32x32" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/nsw-digital-logos/favicon/favicon-32x32.png?m=1681266912"> <link rel="apple-touch-icon" href="/_resources/vendor/nswdpc/waratah/themes/nswds/app/static/nsw-digital-logos/favicon/favicon-16x16.png?m=1681266912"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" async></script> <script> window.onload = function() { let dateElements = document.getElementsByClassName('dateElement'); for (let i = 0; i < dateElements.length; i++) { let dateElement = dateElements[i]; let parts = dateElement.textContent.split(/[-/]/).map(Number); let dateObj = new Date(parts[0], parts[1] - 1, parts[2]); let options = { year: 'numeric', month: 'long', day: 'numeric' }; dateElement.textContent = dateObj.toLocaleDateString('en-GB', options); } }; </script> <link rel="preload" href="https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,400;0,700;1,400&display=swap" as="style" onload="this.rel='stylesheet'"> <!-- FontAwesome --> <link rel="preload" href="_resources/themes/investnsw/dist/css/fontawesome.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'"> <noscript><link rel="stylesheet" href="_resources/themes/investnsw/dist/css/fontawesome.min.css"></noscript> <link rel="preload" href="_resources/themes/investnsw/dist/css/solid.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'"> <noscript><link rel="stylesheet" href="_resources/themes/investnsw/dist/css/solid.min.css"></noscript> <link rel="stylesheet" type="text/css" href="/_resources/themes/investnsw/dist/css/app.min.css?m=1710973785" /> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,400;0,700;1,400&display=swap" media="screen" /> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/icon?family=Material+Icons&display=block" media="screen" /> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NWK9QKM');</script> <!-- End Google Tag Manager --> </head> <body class="nsw-body-content"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NWK9QKM" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <nav class="nsw-skip nsw-skip--dark" aria-label="Skip to links"> <a href="/international-offices/united-kingdom-europe-and-israel/#main-nav"><span>Skip to navigation</span></a> <a href="/international-offices/united-kingdom-europe-and-israel/#main-content"><span>Skip to content</span></a> </nav> <script type="text/javascript"> const closeAlert = document.querySelectorAll('.js-close-alert'); if (closeAlert) { closeAlert.forEach((el) => { el.addEventListener('click', (e) => { e.preventDefault(); const alert = e.target.closest('.js-sitewide-message'); if (alert) { alert.style.display = 'none'; alert.setAttribute('aria-hidden', 'true'); el.setAttribute('aria-expanded', 'false'); } }); }); } </script> <div class="black-line-masthead"></div> <div class="nsw-masthead nsw-masthead--dark"> <div class="nsw-container"> <p>A NSW Government website</p> </div> </div> <header class="nsw-header"> <div class="nsw-header__container"> <div class="nsw-header__inner"> <div class="nsw-header__main" style=" display: flex; justify-content: center;"> <div class="nsw-header__waratah"> <a style="width: 17rem;" href="https://www.investment.nsw.gov.au/"> <img src="/assets/Uploads/NSW-Government-Investment-NSW-logo.svg" style="width: 100%; height: 100%;" alt="Investment NSW"> <span class="sr-only">NSW Government</span> </a> </div> <div class="nsw-header__name"> </div> </div> <div class="nsw-header__menu"> <button type="button" class="js-open-nav" aria-expanded="false" aria-controls="main-nav"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">menu</span> <span><span class="sr-only">Open</span> Menu</span> </button> </div> <div class="nsw-header__search search-and-contact"> <a href="/contact-us/" class="contact-header" title="Internal Link: Contact us" > Contact us </a> <button type="button" class="nsw-header-btn nsw-header-btn--search js-open-search" aria-expanded="false" aria-controls="header-search"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">search</span> <span class="nsw-header-btn__sub"><span class="sr-only">Show</span> Search</span> </button> </div> </div> <div id="header-search" class="nsw-header__search-area js-search-area" hidden> <form role="search" id="SearchForm_getSearchForm" action="/search/getSearchForm/" method="GET" enctype="application/x-www-form-urlencoded"> <label for="SearchForm_getSearchForm_Search" class="sr-only">Search site for:</label> <input id="SearchForm_getSearchForm_Search" name="Search" type="search" class="nsw-header__input js-search-input" value=""> <button class="nsw-icon-button nsw-icon-button--flex" type="submit"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">search</span> <span class="sr-only">Search</span> </button> </form> <button class="nsw-icon-button js-close-search" aria-expanded="true" aria-controls="header-search"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close search</span> </button> </div> </div> </header> <nav class="nsw-main-nav js-mega-menu" id="main-nav" aria-label="Main menu"> <div class="nsw-main-nav__header"> <div class="nsw-main-nav__title">Menu</div> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <ul class="nsw-main-nav__list" data-level="1"> <li> <a href="invest"> <span>Set up in NSW</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-657" role="region" aria-label="Set up in NSW Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-657" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="invest"> <span>Set up in NSW</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">Find out how you can set yourself and your business up for success in New South Wales.</div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="invest/welcome-to-nsw"> <span>Welcome to New South Wales</span> </a> </li> <li> <a href="invest/why-invest-in-nsw"> <span>Why invest in New South Wales</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="invest/living-in-sydney-and-nsw"> <span>Living and working in New South Wales</span> </a> </li> <li> <a href="https://www.investregional.nsw.gov.au/"> <span>Regional NSW</span> </a> </li> <li> <a href="invest/publications"> <span>Resources </span> </a> </li> <li> <a href="invest/how-we-can-help"> <span>How we can help</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> </ul> </div> </li> <li> <a href="international-offices"> <span>International offices</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-376" role="region" aria-label="International offices Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-376" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="international-offices"> <span>International offices</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">Contact an office near you to find out how we can help grow your business in New South Wales or export to global customers.</div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="international-offices/americas"> <span>Americas</span> </a> </li> <li> <a href="international-offices/asean"> <span>ASEAN</span> </a> </li> <li> <a href="international-offices/greater-china"> <span>Greater China</span> </a> </li> <li> <a href="international-offices/india"> <span>India</span> </a> </li> <li> <a href="international-offices/middle-east"> <span>Middle East</span> </a> </li> <li> <a href="international-offices/north-asia"> <span>North Asia</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="international-offices/united-kingdom-europe-and-israel"> <span>United Kingdom, Europe and Israel</span> </a> </li> <li> <a href="/contact-us/"> <span>Contact us</span> </a> </li> </ul> </div> </li> <li> <a href="focus-sectors"> <span>Focus Sectors</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-330" role="region" aria-label="Focus Sectors Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-330" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="focus-sectors"> <span>Focus Sectors</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">Investment NSW helps businesses set up in Australia鈥檚 largest economy and connects them with opportunities that help them succeed.</div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="focus-sectors/manufacturing"> <span>Manufacturing</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="focus-sectors/clean-economy"> <span>Clean Economy</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="focus-sectors/technology"> <span>Technology</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="focus-sectors/health-and-life-sciences"> <span>Health and Life Sciences</span> </a> </li> <li> <a href="focus-sectors/defence"> <span>Defence</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="focus-sectors/space"> <span>Space</span> </a> </li> </ul> </div> </li> <li> <a href="innovation"> <span>Innovation</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-641" role="region" aria-label="Innovation Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-641" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="innovation"> <span>Innovation</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">At Investment NSW, we are dedicated to boosting research and development, fostering startups and innovation and growing priority sectors and precincts across the state. </div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="innovation/sydney-startup-hub"> <span>Sydney Startup Hub</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="innovation/western-sydney-startup-hub"> <span>Western Sydney Startup Hub</span> </a> </li> <li> <a href="innovation/nsw-innovation-and-productivity-council"> <span>NSW Innovation and Productivity Council</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="innovation/international-landing-pad"> <span>International Landing Pad</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="innovation/tech-central-scaleup-hub"> <span>Tech Central Scaleup Hub</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="innovation/precincts"> <span>Precincts</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> </ul> </div> </li> <li> <a href="export"> <span>Export from NSW </span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-656" role="region" aria-label="Export from NSW Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-656" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="export"> <span>Export from NSW </span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">Export your products or services, by tapping into global contacts, and by accessing programs and grants. </div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="export/going-global-export-program"> <span>Going Global Export Program</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> </li> <li> <a href="export/capability-building-program"> <span>NSW Export Capability Building Program</span> </a> </li> <li> <a href="export/premiers-nsw-export-awards"> <span>Premier's NSW Export Awards</span> </a> </li> <li> <a href="export/export-programs-services-and-support"> <span>Export programs, services and support </span> </a> </li> <li> <a href="export/export-resources"> <span>Export Resources </span> </a> </li> </ul> </div> </li> <li> <a href="grants-and-rebates"> <span>Grants & Programs</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-290" role="region" aria-label="Grants & Programs Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-290" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="grants-and-rebates"> <span>Grants & Programs</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">Grants, funding and assistance programs to help your business succeed or recover.</div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="grants-and-rebates/mvp-ventures"> <span>MVP (Minimum Viable Product) Ventures</span> </a> </li> <li> <a href="grants-and-rebates/fostering-innovation-sponsorship-program"> <span>Fostering Innovation Sponsorship Program</span> </a> </li> <li> <a href="grants-and-rebates/boosting-business-innovation-program"> <span>Boosting Business Innovation Program</span> </a> </li> </ul> </div> </li> <li> <a href="news-and-events"> <span>News & Events</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_right</span> </a> <div class="nsw-main-nav__sub-nav" id="sub-nav-12" role="region" aria-label="News & Events Submenu"> <div class="nsw-main-nav__header"> <button class="nsw-icon-button nsw-icon-button--flex js-close-sub-nav" type="button" aria-expanded="true" aria-controls="sub-nav-12" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">keyboard_arrow_left</span> <span>Back<span class="sr-only"> to previous menu</span></span> </button> <button class="nsw-icon-button js-close-nav" type="button" aria-expanded="true"> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">close</span> <span class="sr-only">Close Menu</span> </button> </div> <div class="nsw-main-nav__title"> <a href="news-and-events"> <span>News & Events</span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </div> <div class="nsw-main-nav__description">Find everything you need to know about Investment NSW, right here.</div> <ul class="nsw-main-nav__sub-list" data-level="2"> <li> <a href="news-and-events/media-releases"> <span>Media releases and news</span> </a> </li> <li> <a href="news-and-events/events"> <span>Events</span> </a> </li> <li> <a href="news-and-events/videos"> <span>Videos</span> </a> </li> </ul> </div> </li> </ul> </nav> <div class="nsw-container nsw-p-bottom-xs"> <nav aria-label="Breadcrumb" class="nsw-breadcrumbs"> <ol class="nsw-breadcrumb__list" itemscope itemtype="https://schema.org/BreadcrumbList"> <li class="nsw-breadcrumb__item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" href="/" class="nsw-breadcrumb__link"><span itemprop="name">Home</span></a> <meta itemprop="position" content="1" /> </li> <li class="nsw-breadcrumb__item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" href="/international-offices/" class="nsw-breadcrumb__link"><span itemprop="name">International offices</span></a> <meta itemprop="position" content="2" /> </li> <li class="nsw-breadcrumb__item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> <a itemprop="item" href="/international-offices/united-kingdom-europe-and-israel/" class="nsw-breadcrumb__link nsw-breadcrumb--current" aria-current="page"><span itemprop="name">United Kingdom, Europe and Israel</span></a> <meta itemprop="position" content="3" /> </li> </ol> </nav> </div> <div class="nsw-container nsw-p-top-sm nsw-p-bottom-lg" data-page-type="2"> <div class="nsw-layout"> <aside class="nsw-layout__sidebar nsw-layout__sidebar--desktop"> <nav class="nsw-side-nav" aria-labelledby="international-offices"> <div class="nsw-side-nav__header" id="international-offices"> <a href="/international-offices/" class="nsw-side-nav__heading-link">International offices</a> </div> <ul> <li> <a href="/international-offices/americas/"> Americas </a> </li> <li> <a href="/international-offices/asean/"> ASEAN </a> </li> <li> <a href="/international-offices/greater-china/"> Greater China </a> </li> <li> <a href="/international-offices/india/"> India </a> </li> <li> <a href="/international-offices/middle-east/"> Middle East </a> </li> <li> <a href="/international-offices/north-asia/"> North Asia </a> </li> <li class="active"> <a href="/international-offices/united-kingdom-europe-and-israel/" class="current" aria-current="page"> United Kingdom, Europe and Israel </a> </li> <li> <a href="/contact-us/"> Contact us </a> </li> </ul> </nav> </aside> <main id="main-content" class="nsw-layout__main"> <div class="nsw-block"> <h1 class="main-page-title">Talk to an expert in the United Kingdom, Europe and Israel</h1> <p class="nsw-intro"> We can help establish or grow your international business in NSW, or to export products from NSW to customers in the UK, Europe and Israel. </p> <nav class="nsw-in-page-nav" aria-labelledby="in-page-nav"> <div id="in-page-nav" class="nsw-in-page-nav__title">On this page</div> <ul> <li> <a href="/international-offices/united-kingdom-europe-and-israel/#key-contact">Key contact</a> </li> <li> <a href="/international-offices/united-kingdom-europe-and-israel/#contact-us">Contact us</a> </li> <li> <a href="/international-offices/united-kingdom-europe-and-israel/#how-we-can-help">How we can help</a> </li> <li> <a href="/international-offices/united-kingdom-europe-and-israel/#london-landing-pad">London Landing Pad</a> </li> <li> <a href="/international-offices/united-kingdom-europe-and-israel/#opportunities">Opportunities</a> </li> <li> <a href="/international-offices/united-kingdom-europe-and-israel/#latest-news">Latest news</a> </li> <li> <a href="/international-offices/united-kingdom-europe-and-israel/#related-links">Related links</a> </li> </ul> </nav> </div> <section class="nsw-section" id="key-contact-2" data-type="elementcontent" data-page-type="2"> <div class="basic-content" style=""> <h2 >Key contact</h2> <p>To be confirmed</p> </div> </section> <section class="nsw-section nsw-section--half-padding" id="key-contact" data-type="elementdecoratedcontent" data-page-type="2"> </section> <section class="nsw-section nsw-section--half-padding" id="contact-us" data-type="elementcontent" data-page-type="2"> <div class="basic-content" style=""> <h2 >Contact us</h2> </div> </section> <section class="nsw-section nsw-section--half-padding" id="london-office" data-type="elementlist" data-page-type="2"> <h3 >London office</h3> <div class="nsw-grid"> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-6 nsw-col-lg-6"> <div class="basic-content" style=""> <p><strong>Address</strong></p><p>Investment NSW<br>NSW Government<br>Level 4 & 5, Australia Centre<br>Australia House<br>Melbourne Place<br>London, United Kingdom, WC2B 4LG</p> </div> </div> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-6 nsw-col-lg-6"> <div class="basic-content" style=""> <p><strong>Email</strong></p><p><a href="/cdn-cgi/l/email-protection#ffaab4ba8a8d908f9abf9691899a8c8b929a918bd1918c88d1989089d19e8a">Email the Investment NSW office in London</a></p> </div> </div> </div> </section> <section class="nsw-section nsw-section--half-padding" id="key-facts" data-type="elementlist" data-page-type="2"> <h2 >Key facts</h2> <div class="nsw-grid"> <div class="nsw-col nsw-col-md-4"> <div class="nsw-content-block"> <div class="nsw-content-block__image"> <div class="nsw-content-block__icon"> <img src="/assets/images/Net-Zero/aust-map-blue-icon.svg" alt="" style="object-fit: contain; height: 100%;"> </div> </div> <div class="nsw-content-block__content"> <div class="nsw-content-block__title"> </div> <div class="nsw-content-block__copy"> <p><span>The UK鈥檚 pivot to the Indo-Pacific creates an opportunity to increase UK investment in NSW priority sectors and regions.</span></p> </div> </div> </div> </div> <div class="nsw-col nsw-col-md-4"> <div class="nsw-content-block"> <div class="nsw-content-block__image"> <div class="nsw-content-block__icon"> <img src="/assets/images/Net-Zero/graph-blue-icon.svg" alt="" style="object-fit: contain; height: 100%;"> </div> </div> <div class="nsw-content-block__content"> <div class="nsw-content-block__title"> </div> <div class="nsw-content-block__copy"> <p><span>The UK is one of NSW and Australia鈥檚 oldest and largest sources of investment, with UK FDI in Australia valued at over $120 billion in 2020, the country鈥檚 third-highest source of FDI that year.</span></p> </div> </div> </div> </div> <div class="nsw-col nsw-col-md-4"> <div class="nsw-content-block"> <div class="nsw-content-block__image"> <div class="nsw-content-block__icon"> <img src="/assets/Uploads/publications/industries/space/globe.svg" alt="" style="object-fit: contain; height: 100%;"> </div> </div> <div class="nsw-content-block__content"> <div class="nsw-content-block__title"> </div> <div class="nsw-content-block__copy"> <p>The Australia-UK Free Trade Agreement (UKFTA) is an ambitious and comprehensive FTA that will drive increased trade in goods and services, two-way investment, economic growth and job creation. </p> </div> </div> </div> </div> </div> </section> <section class="nsw-section nsw-section--half-padding" id="how-we-can-help" data-type="elementcontent" data-page-type="2"> <div class="basic-content" style=""> <h2 >How we can help</h2> <p>Investment NSW support is available to help grow UK, European and Israeli investment in NSW and profile our state鈥檚 capabilities to new investors and partners.</p><p>Our staff are working to attract global talent and businesses to NSW - including supporting other parts of Investment NSW, such as Destination NSW, to attract major sporting, cultural and business events to our state.</p> </div> </section> <section class="nsw-section" id="london-landing-pad" data-type="elementcontent" data-page-type="2"> <div class="basic-content" style=""> <h2 >London Landing Pad</h2> <p>The London Landing Pad is an exclusive offering provided by the NSW Government to support businesses from New South Wales to establish in the UK and Europe. It is a dedicated co-working space designed to provide a soft landing in a supportive environment, where businesses entering the UK and European markets can kickstart their ventures with ease.</p><p>The London Landing Pad is embedded within the Investment NSW offices in Australia Centre, located in Australia House, London. You are eligible to apply to access the London Landing Pad if:</p><ul> <li>your business is legally registered in New South Wales</li> <li>you have business traction in the UK and/or Europe</li> <li>you are looking to set your business up or sell into the UK and/or Europe.</li> </ul><p>The International Landing Pad offers:</p><ul> <li>desk spaces</li> <li>meeting rooms and breakout spaces</li> <li>an easily accessible address for your business engagement with government and the local ecosystem</li> <li>assistance navigating the local market and program opportunities.</li> </ul><p>To book your space, please contact <a href="/cdn-cgi/l/email-protection#51041a1424233e213411383f273422253c343f257f3f22267f363e277f3024"><span class="__cf_email__" data-cfemail="fda8b6b8888f928d98bd94938b988e8990989389d3938e8ad39a928bd39c88">[email protected]</span></a></p> </div> </section> <section class="nsw-section nsw-section--half-padding" id="opportunities" data-type="elementcontent" data-page-type="2"> <div class="basic-content" style=""> <h2 >Opportunities</h2> <h3>Grow in NSW</h3><p>NSW is an economic leader. Its economy is the largest in Australia, and is larger than the economies of Malaysia, Singapore and Hong Kong.</p><p>NSW鈥檚 resilient economy has been a driver of Australia鈥檚 growth for decades and is highly productive by international standards. For most of the last five years, the NSW economy has grown at or above the national average while the unemployment rate has been below the national rate. NSW has achieved the nation鈥檚 lowest debt, while funding the largest infrastructure spending program at $97 billion. </p><p>The NSW Government鈥檚 Net Zero Plan, together with the NSW Electricity Strategy, are forecast to result in $11.6 billion of new investment for NSW, including $7 billion in regional NSW, and support the creation of almost 2,400 new jobs, including 1,700 jobs located in the regions.</p><h3>Export from NSW</h3><p>The A-UKFTA will deliver better and more certain access to the UK market for the world-class exporters of NSW, including farmers and small businesses.</p><p>Currently 89% of Australian goods are exported into the UK duty free. From the day the A-UKFTA comes into force, over 99 per cent of Australian goods exports by value to the UK will enter without tariffs, representing around $9.2 billion worth of current annual Australian merchandise trade into the UK. </p> </div> </section> <section class="nsw-section nsw-section--half-padding" id="latest-news" data-type="elementallinks" data-page-type="2"> <h2 >Latest news</h2> <div class="nsw-grid"> <div class="nsw-col nsw-col-xs-12 nsw-col-sm-6 nsw-col-md-6 nsw-col-lg-6"> <div class="nsw-card nsw-card--highlight here"> <div class="nsw-card__content"> <div class="nsw-card__title"> <a href="/" class="" title="Internal Link: Why UK companies should consider a move to Sydney" > Why UK companies should consider a move to Sydney </a> </div> <div class="nsw-card__copy"> Following the UK鈥檚 historic trade deal with Australia, businesses looking for a foothold in the fast-growing Asia-Pacific region should look to New South Wales. </div> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </div> </div> </div> </div> </section> <section class="nsw-section nsw-section--half-padding" id="related-links" data-type="elementallinks" data-page-type="2"> <h2 >Related links</h2> <div class="nsw-link-list"> <ul> <li> <a href="https://www.dfat.gov.au/trade/agreements/not-yet-in-force/aukfta"> <span class="visually-hidden">External Link</span> <span> Australia-United Kingdom Free Trade Agreement <i class="fa-solid fa-up-right-from-square"></i> </span> <span class="material-icons nsw-material-icons" focusable="false" aria-hidden="true">east</span> </a> </li> </ul> </div> </section> <section class="nsw-section nsw-section--half-padding" id="last-updated" data-type="elementcontent" data-page-type="2"> <div class="basic-content" style=""> <p>Last updated: 10 July 2023</p> </div> </section> </main> </div> </div> <footer class="nsw-footer wrth-footer--default"> <div class="nsw-footer__lower"> <div class="nsw-container"> <p> We acknowledge, respect and value Aboriginal peoples as the Traditional Custodians of the lands on which we walk, live and work. We pay our respects to Elders past and present. We acknowledge the diversity of Aboriginal people and their ongoing connection to their country, waters and seas. We also acknowledge our Aboriginal and Torres Strait Islander employees who are an integral part of our diverse workforce. </p> <div class="nsw-footer__content"> <p> </p><p> </p> </div> <hr> <div class="nsw-footer__links"> <ul> <li> <a href="https://www.nsw.gov.au" class="nsw-footer-links__link nsw-icon-button" style="text-decoration: underline;"> nsw.gov.au </a> </li> <li> <a href="/accessibility/" class="nsw-footer-links__link nsw-icon-button" style="text-decoration: underline;"> Accessibility </a> </li> <li> <a href="/copyright/" class="nsw-footer-links__link nsw-icon-button" style="text-decoration: underline;"> Copyright </a> </li> <li> <a href="https://www.nsw.gov.au/departments-and-agencies/premiers-department/contact-us/privacy" class="nsw-footer-links__link nsw-icon-button" style="text-decoration: underline;"> Privacy </a> </li> <li> <a href="https://www.nsw.gov.au/departments-and-agencies/premiers-department/access-to-information" class="nsw-footer-links__link nsw-icon-button" style="text-decoration: underline;"> Access to information </a> </li> </ul> <div class="nsw-footer__social wrth-social-links"> <a href="https://www.linkedin.com/company/investment-nsw/" rel="noopener" class="nsw-icon-button"> LinkedIn </a> </div> </div> <div class="nsw-footer__info"> <p class="nsw-footer__copyright"> Copyright © 2024 </p> </div> </div> </div> </footer> <div id="externalLinkIcon" style="visibility: hidden; display: none"> <span class="visually-hidden">External Link</span> <i class="fa-solid fa-up-right-from-square"></i> </div> <div id="downloadLinkIcon" style="visibility: hidden; display: none"> <span class="visually-hidden">Download file</span> <i class="fa-solid fa-cloud-arrow-down"></i> </div> <div id="anchorLinkIcon" style="visibility: hidden; display: none"> <span class="visually-hidden">Anchor Link</span> <i class="fa-solid fa-anchor"></i> </div> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="application/javascript" src="/_resources/themes/investnsw/dist/js/app.min.js?m=1710973785"></script> <script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js" integrity="sha512-pumBsjNRGGqkPzKHndZMaAG+bir374sORyzM3uulLV14lN5LyykqNk8eEeUlUkB3U0M4FApyaHraT65ihJhDpQ==" crossorigin="anonymous"></script> <script type="application/javascript" src="/_resources/themes/nswds/app/frontend/dist/js/app.min.js?m=1710973785" async="async"></script> </body> </html>